diff options
author | Joe Zhao <ztuowen@gmail.com> | 2015-03-17 11:05:29 +0800 |
---|---|---|
committer | Joe Zhao <ztuowen@gmail.com> | 2015-03-17 11:05:29 +0800 |
commit | a9ee47b61558efe09aee23f5671aabd0c3747e8a (patch) | |
tree | 52426053545a54514d39300e2117bdda14a9b1ef /p9.hs | |
parent | 11a5fd38018498a7b7feb0e392ac36003b0440ac (diff) | |
download | h99-a9ee47b61558efe09aee23f5671aabd0c3747e8a.tar.gz h99-a9ee47b61558efe09aee23f5671aabd0c3747e8a.tar.bz2 h99-a9ee47b61558efe09aee23f5671aabd0c3747e8a.zip |
p -> h
Diffstat (limited to 'p9.hs')
-rw-r--r-- | p9.hs | 13 |
1 files changed, 0 insertions, 13 deletions
@@ -1,13 +0,0 @@ -pack :: (Eq a) => [a] -> [[a]] -pack = foldr elim [] - where elim e [] = [[e]] - elim e p@(n:ns) - | e == head n = (e:n):ns - | otherwise = [e]:p - -pack' (x:xs) = let (first,rest) = span (==x) xs - in (x:first) : pack' rest -pack' [] = [] - -pack'' (x:xs) = (x:takeWhile (==x) xs):(pack'' $ dropWhile (==x) xs) -pack'' [] = [] |