Skip to content

Instantly share code, notes, and snippets.

@vasily-kirichenko
Created June 4, 2012 16:50
Show Gist options
  • Select an option

  • Save vasily-kirichenko/2869501 to your computer and use it in GitHub Desktop.

Select an option

Save vasily-kirichenko/2869501 to your computer and use it in GitHub Desktop.
Quick sort
sort([]) -> [];
sort([H|T]) ->
sort([X || X <- T, X =< H]) ++ [H] ++ sort([X || X <- T, X > H]).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment