Skip to content

Instantly share code, notes, and snippets.

@ellismarte
Created January 27, 2016 00:32
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 ellismarte/39adb3d8e3d57f050863 to your computer and use it in GitHub Desktop.
Save ellismarte/39adb3d8e3d57f050863 to your computer and use it in GitHub Desktop.
def reverse(string)
n = string.length
n.times do
string = string.slice!(-1) + string
end
return string
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment