Skip to content

Instantly share code, notes, and snippets.

@ermand
Created December 28, 2014 21:59
Show Gist options
  • Save ermand/637d15dd01adbe70cb71 to your computer and use it in GitHub Desktop.
Save ermand/637d15dd01adbe70cb71 to your computer and use it in GitHub Desktop.
Shuffle String in Ruby
def shuffle_string(string)
string.split('').shuffle.join
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment