Created
October 19, 2016 01:34
-
-
Save peroon/6048e9dcaf75724868a29a26ee528290 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
| s = "山賀琴子ことこ" | |
| output = "" | |
| 140.times{ | |
| index = rand(s.length) | |
| add_s = s[index] | |
| output = output + add_s | |
| } | |
| p output | |
| if output.include?("山賀琴子") then | |
| p "true" | |
| else | |
| p "false" | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment