Pinned Loading
-
elegant-snippets.txt
elegant-snippets.txt 1-- quicksort in erlang
2quicksort([Pivot|T]) ->
3quicksort([ X || X <- T, X < Pivot]) ++
4[Pivot] ++
5quicksort([ X || X <- T, X >= Pivot]);
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.