Sorting algorithms/Bogosort: Difference between revisions

Content deleted Content added
Aerobar (talk | contribs)
add RPL
Phunanon (talk | contribs)
→‎Insitux: correction
Line 1,647:
 
<syntaxhighlight lang="insitux">(function bogo-sort order list
(return-whenunless (empty?1 list) [])
(if (... order list)
list
(recur order (shuffle list))))