musique/examples/permutations.mq
Robert Bendun ddf9cc8f8c New declaration syntax x := foo instead of var x = foo
Additionaly moving into multiparameter binary operations
2022-09-18 14:50:20 +02:00

12 lines
293 B
Plaintext

factorial := [n | if (n < 2) [1] [factorial (n-1) * n]];
for_all_permutations := [array fun |
iter := [start stop x | if (start >= stop) [x] [iter (start+1) stop (fun x)]];
iter 0 (factorial (len array)) array
];
for_all_permutations (flat 1 2 3 4 5) [array|
say array;
permute array
];