Skip to content

Instantly share code, notes, and snippets.

@davorb
Created March 24, 2012 22:24
Show Gist options
  • Save davorb/2188598 to your computer and use it in GitHub Desktop.
Save davorb/2188598 to your computer and use it in GitHub Desktop.
quicksort :: (Ord a) => [a] -> [a]
quicksort [] = []
quicksort (x:xs) =
let smallerSorted = quicksort [a | a <- xs, a <= x]
biggerSorted = quicksort [a | a <- xs, a > x]
in smallerSorted ++ [x] ++ biggerSorted
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment