Skip to content

Instantly share code, notes, and snippets.

@ravelll
Created May 24, 2013 03:02
Show Gist options
  • Save ravelll/5641029 to your computer and use it in GitHub Desktop.
Save ravelll/5641029 to your computer and use it in GitHub Desktop.
ruby on rails tutorial Chapter4 exercise1
def string_shuffle(s)
s.split('').shuffle.join
end
puts string_shuffle("asdffdsa")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment