Skip to content

Instantly share code, notes, and snippets.

@peroon
Created October 19, 2016 01:34
Show Gist options
  • Select an option

  • Save peroon/6048e9dcaf75724868a29a26ee528290 to your computer and use it in GitHub Desktop.

Select an option

Save peroon/6048e9dcaf75724868a29a26ee528290 to your computer and use it in GitHub Desktop.
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