2.2
authorMart Lubbers <mart@martlubbers.net>
Sun, 2 Dec 2018 10:11:25 +0000 (11:11 +0100)
committerMart Lubbers <mart@martlubbers.net>
Sun, 2 Dec 2018 10:11:25 +0000 (11:11 +0100)
2/s2.icl [new file with mode: 0644]

diff --git a/2/s2.icl b/2/s2.icl
new file mode 100644 (file)
index 0000000..7c02f7c
--- /dev/null
+++ b/2/s2.icl
@@ -0,0 +1,30 @@
+module s2
+
+import StdEnv
+
+import Data.Func
+import Data.List
+import Data.Tuple
+
+getinput f
+# (ok, c, f) = freadc f
+| not ok = []
+= [c:getinput f]
+
+split :: [Char] [Char] -> [[Char]]
+split [] [] = []
+split c [] = [reverse c]
+split c ['\n':rest] = [reverse c:split [] rest]
+split c [r:rest] = split [r:c] rest
+
+Start w
+# (io, w) = stdio w
+= map (map fst o filter (uncurry (==)) o zip)
+       $ flatten
+       $ filter (not o isEmpty)
+       $ proc
+       $ split []
+       $ getinput io
+
+proc [] = []
+proc [x:xs] = [[(e, x)\\e<-xs | length [()\\a<-x & b<-e | a<>b] <= 1]:proc xs]