Skip to content

Instantly share code, notes, and snippets.

@adpoe
Created June 16, 2016 04:45
Show Gist options
  • Save adpoe/e86773d7ae890afadc62cda29fc68056 to your computer and use it in GitHub Desktop.
Save adpoe/e86773d7ae890afadc62cda29fc68056 to your computer and use it in GitHub Desktop.
Very simple Quicksort Implementation from "Learn You a Haskell For Great Good!"
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