Skip to content

Instantly share code, notes, and snippets.

@raeq
Created July 18, 2020 10:38
Show Gist options
  • Save raeq/88fd2862a9a91cff69b7fc6c97d9414d to your computer and use it in GitHub Desktop.
Save raeq/88fd2862a9a91cff69b7fc6c97d9414d to your computer and use it in GitHub Desktop.
Reverse a String
def string_reverse(forward: str = "") -> str:
return forward[::-1]
assert string_reverse("hello") == "olleh"
assert string_reverse("goodbye") != "goodbye"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment