RosettaCodeData/Task/Permutations/CoffeeScript/permutations-2.coffeescript
Ingy döt Net b83f433714 tasks a-s
2013-04-10 23:57:08 -07:00

7 lines
82 B
Text

coffee> console.log (permute "123").join "\n"
1,2,3
1,3,2
2,1,3
2,3,1
3,1,2
3,2,1