Skip to content

Instantly share code, notes, and snippets.

@vinipsmaker
Created December 24, 2014 20:36
Show Gist options
  • Save vinipsmaker/1befb67fac70e3483256 to your computer and use it in GitHub Desktop.
Save vinipsmaker/1befb67fac70e3483256 to your computer and use it in GitHub Desktop.
sort :: (Ord a) => [a] -> [a]
sort [] = []
sort (pivot:rest) = sort [y | y <- rest, y < pivot]
++ [pivot] ++
sort [y | y <- rest, y >= pivot]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment