Interview-Prep icon indicating copy to clipboard operation
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

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'...