Skip to content

Latest commit

 

History

History

04-02 Reverse a String

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Reverse a String

Problem

Reverse a string using recursion. Again, make sure you use recursion to accomplish this. Do not slice (e.g. string[::-1]) or use iteration, there must be a recursive call for the function.

Code

Create your solution in the form:

def reverse(s):
    pass

Example

>>> reverse('hello world')
'dlrow olleh'