Permutations: Difference between revisions

m
(→‎{{header|Clojure}}: Leave the library function. It is important to also show what is available in standard libraries if allowed by the task description.)
Line 1,031:
nil
user=> (clojure.contrib.combinatorics/permutations [1 2 3])
((1 2 3) (1 3 2) (2 1 3) (2 3 1) (3 1 2) (3 2 1))</lang>
 
===Explicit===
Anonymous user