summaryrefslogtreecommitdiff
path: root/21-28/28.hs
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2017-05-29 01:11:20 -0400
committerDeterminant <ted.sybil@gmail.com>2017-05-29 01:11:20 -0400
commitfa1bf6c2eac1c9f7969ff29504c9f51b9ba48008 (patch)
tree3ff5689d025100431adac277d0411ca88681166e /21-28/28.hs
parent9c608c32a9387a1dd1cb045e5822733ad181ccf8 (diff)
finish vol 3
Diffstat (limited to '21-28/28.hs')
-rw-r--r--21-28/28.hs16
1 files changed, 16 insertions, 0 deletions
diff --git a/21-28/28.hs b/21-28/28.hs
new file mode 100644
index 0000000..dd9270d
--- /dev/null
+++ b/21-28/28.hs
@@ -0,0 +1,16 @@
+import Data.List (sortBy, foldl', groupBy)
+import Data.Ord (comparing)
+
+lsort :: [[a]] -> [[a]]
+
+lsort = sortBy (comparing length)
+
+lfsort :: [[a]] -> [[a]]
+
+lfsort l =
+ [a | (a, b) <- sortBy (\x y -> (snd x) `compare` (snd y)) zipped]
+ where larr = map length l
+ count l e = foldl' (\acc x -> acc + (if x == e then 1 else 0)) 0 l
+ zipped = zip l (map (count larr) larr)
+
+lfsort2 = concat . lsort . groupBy (\x y -> length x == length y) . lsort