Skip to content

Instantly share code, notes, and snippets.

@davorb
Forked from olof/quicksort.erl
Created March 24, 2012 23:50
Show Gist options
  • Save davorb/2189298 to your computer and use it in GitHub Desktop.
Save davorb/2189298 to your computer and use it in GitHub Desktop.
qs [] = []
qs (x:xs) = qs [a|a<-xs, a<=x]++[x]++qs [a|a<-xs, a>x]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment