Skip to content

Instantly share code, notes, and snippets.

@kkchu791
Created November 16, 2015 06:54
Show Gist options
  • Save kkchu791/39522eb61f0cf75350b7 to your computer and use it in GitHub Desktop.
Save kkchu791/39522eb61f0cf75350b7 to your computer and use it in GitHub Desktop.
class UnpredictableString < String
def scramble(string)
string.split("").shuffle.join("")
end
end
sentence = UnpredictableString.new
p sentence.scramble("It was a dark and stormy night.")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment