Skip to content

Instantly share code, notes, and snippets.

@jesboat
Created June 16, 2013 19:51
Show Gist options
  • Save jesboat/5793183 to your computer and use it in GitHub Desktop.
Save jesboat/5793183 to your computer and use it in GitHub Desktop.
quicksort lst = case lst of
pivot:rest -> (quicksort less) ++ [pivot] ++ (quicksort grtr) where
less = filter (<= pivot) rest
grtr = filter (> pivot) rest
empty -> empty
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment