Skip to content

Instantly share code, notes, and snippets.

@Scriptor
Created November 5, 2013 18:21
Show Gist options
  • Save Scriptor/7323595 to your computer and use it in GitHub Desktop.
Save Scriptor/7323595 to your computer and use it in GitHub Desktop.
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