Course · Section 10: A Closer Look at Functions · Lecture 137: First-Class and Higher-Order Functions
Implement `reverseStr(s)` returning the reverse of `s` using recursion.
+ 1 hidden test run on Submit.
Reversing the rest of the string and appending the first character builds the full reversal.
Run your code to see results.