Created
March 15, 2016 16:41
-
-
Save Tyralion/31354a1612173ea087e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| qsort :: Ord a => [a] -> [a] | |
| qsort [] = [] | |
| qsort (a:xs) = let | |
| helper [] y l = y : qsort l | |
| helper (k:ks) y l | k <= y = helper ks k (y : l) | |
| | otherwise = helper ks y (k : l) | |
| in helper xs a [] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment