Skip to content

Instantly share code, notes, and snippets.

@keokent
Created May 24, 2013 03:57
Show Gist options
  • Save keokent/5641205 to your computer and use it in GitHub Desktop.
Save keokent/5641205 to your computer and use it in GitHub Desktop.
Rails Tutorial Chapter4 Exercises 1
def string_shuffle(s)
s.split("").shuffle.join
end
p string_shuffle("foobar")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment