Skip to content

Instantly share code, notes, and snippets.

@lobster1234
Created February 22, 2023 20:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lobster1234/bd3b5e96024c34593c55a5dcc2f87755 to your computer and use it in GitHub Desktop.
Save lobster1234/bd3b5e96024c34593c55a5dcc2f87755 to your computer and use it in GitHub Desktop.
def reverse_string(s):
if len(s)==1:
return s
else:
return s[-1]+reverse_string(s[0:len(s)-1])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment