RosettaCodeData/Task/Permutations/CoffeeScript/permutations-2.coffee

8 lines
82 B
CoffeeScript
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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