
13 Apr
2007
13 Apr
'07
9:08 a.m.
Hello,
My Hugs tells me this:
Prelude> let sort [] = []; sort l@(x:_) = filter (
And for reference, here is again stefan's "stable" quicksort from his earlier post.
" sort [] = [] sort l@(x:_) = filter (
x) l (A stable quicksort, btw) "
This is the code whose legitimacy I am requesting confirmation of.
2007/4/13, Thomas Hartman
: You may be missing a few recursive calls there :-)
Indeed.
...