Interview-Prep
Interview-Prep copied to clipboard
This is interview prep curriculum, for post-bootcamp preparation for interviews.
Results
2
Interview-Prep issues
Sort by
recently updated
recently updated
newest added
Correct issue #9
There's an error with your code reversed ``` def reverse(s): new_str = "" for i in range(len(s)): new_str += s[i*-1] return new_str ``` This return ``` reverse('choco') 'cocoh' reverse('cats') 'csta'...