Sorting algorithms/Permutation sort: Difference between revisions

m
added whitespace before the TOC (table of contents), added a ;Task: (bold) header as well as a task requirement (the directive).
m (→‎{{header|Sidef}}: minor code improvements)
m (added whitespace before the TOC (table of contents), added a ;Task: (bold) header as well as a task requirement (the directive).)
Line 1:
{{task|Sorting Algorithms}}{{Sorting Algorithm}}
{{Sorting Algorithm}}
{{omit from|GUISS}}
 
Permutation sort, which proceeds by generating the possible permutations
;Task:
PermutationImplement a permutation sort, which proceeds by generating the possible permutations
of the input array/list until discovering the sorted one.
 
Line 8 ⟶ 11:
nextPermutation(list)
'''done'''
<br><br>
 
=={{header|ActionScript}}==