Created
November 16, 2015 06:54
-
-
Save kkchu791/39522eb61f0cf75350b7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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