summaryrefslogtreecommitdiff
path: root/h28.hs
diff options
context:
space:
mode:
Diffstat (limited to 'h28.hs')
-rw-r--r--h28.hs11
1 files changed, 0 insertions, 11 deletions
diff --git a/h28.hs b/h28.hs
deleted file mode 100644
index 0ff75cc..0000000
--- a/h28.hs
+++ /dev/null
@@ -1,11 +0,0 @@
-import Data.List
-import Data.Ord (comparing)
-import Data.Function
-
-lsort :: [[a]] -> [[a]]
-lsort = sortBy (comparing length)
-
-lsort' = sortBy (\xs ys -> compare (length xs) (length ys))
-
-lsort'' = sortBy (compare `on` length)
-