fix: update chunky monkey code solution links (#34258)

advanced code solution 3 links:
1. solution code shows 'slice' being used, but relevant link directed to 'splice'-- link now sends to 'slice'
2. 'run code' link showed adv code solution 2-- link now sends to code used in adv code solution 3
This commit is contained in:
rebelcl0ud
2019-01-15 14:24:17 -08:00
committed by Tom
parent 5e8738ff10
commit 52637ceebb

View File

@ -181,7 +181,7 @@ Finally, we need a method to do the actual splitting and we can use `Array.slice
}
}
```
![:rocket:](https://forum.freecodecamp.com/images/emoji/emoji_one/rocket.png?v=3 ":rocket:") <a href='https://repl.it/CLjU/579' target='_blank' rel='nofollow'>Run Code</a>
![:rocket:](https://forum.freecodecamp.com/images/emoji/emoji_one/rocket.png?v=3 ":rocket:") <a href='https://repl.it/repls/WideBriskMining' target='_blank' rel='nofollow'>Run Code</a>
### Code Explanation:
@ -191,7 +191,7 @@ Finally, we need a method to do the actual splitting and we can use `Array.slice
#### Relevant Links
* <a href='https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Functions#Recursion' target='_blank' rel='nofollow'>Recursion</a>
* <a href='https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice' target='_blank' rel='nofollow'>Array.splice()</a>
* <a href='https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice' target='_blank' rel='nofollow'>Array.slice()</a>
## ![:clipboard:](https://forum.freecodecamp.com/images/emoji/emoji_one/clipboard.png?v=3 ":clipboard:") NOTES FOR CONTRIBUTIONS: