Created
March 8, 2017 03:08
-
-
Save thoff1331/034fd679cce7f51d9cdff507a6d60bc5 to your computer and use it in GitHub Desktop.
Wheres WaldoWaldo is hiding in some strings. You've been given a string named waldoString. Waldo will be hiding in it somewhere. Return the index of where in the string 'Waldo' starts.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function findWaldo(str){ | |
| var waldoPosition; | |
| // code below here | |
| return waldoPosition; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment