Last active
August 29, 2015 14:22
-
-
Save yuchan/2b4df1580e4d32c3bf55 to your computer and use it in GitHub Desktop.
Altkoo
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
#!/usr/bin/env ruby | |
# coding: utf-8 | |
# "ALTKOO"を並び替えます。 | |
word = "ALTKOO" | |
carray = word.split(//) | |
carray.permutation.to_a.each do |elem| | |
p elem.join("") | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
"ALTKOO"
"ALTKOO"
"ALTOKO"
"ALTOOK"
"ALTOKO"
"ALTOOK"
"ALKTOO"
"ALKTOO"
"ALKOTO"
"ALKOOT"
"ALKOTO"
"ALKOOT"
-- (snip) --