aboutsummaryrefslogtreecommitdiff
path: root/2020/06-Custom_Customs/second.hs
diff options
context:
space:
mode:
authorJulien Dessaux2023-03-13 21:36:59 +0100
committerJulien Dessaux2023-03-13 21:36:59 +0100
commit9c4275d2181f72aa672e3c8cbe2336eb34c19a25 (patch)
treeb45382b88080c82daf9512a131ee29bc810c81f4 /2020/06-Custom_Customs/second.hs
parent2020-05 in haskell (diff)
downloadadvent-of-code-9c4275d2181f72aa672e3c8cbe2336eb34c19a25.tar.gz
advent-of-code-9c4275d2181f72aa672e3c8cbe2336eb34c19a25.tar.bz2
advent-of-code-9c4275d2181f72aa672e3c8cbe2336eb34c19a25.zip
2020-06 in haskell
Diffstat (limited to '')
-rw-r--r--2020/06-Custom_Customs/second.hs25
1 files changed, 25 insertions, 0 deletions
diff --git a/2020/06-Custom_Customs/second.hs b/2020/06-Custom_Customs/second.hs
new file mode 100644
index 0000000..10d0ff4
--- /dev/null
+++ b/2020/06-Custom_Customs/second.hs
@@ -0,0 +1,25 @@
+-- requires cabal install --lib split Unique
+module Main (main) where
+
+import Control.Monad (void, when)
+import Data.List (intersect, foldl')
+import Data.List.Split (splitOn)
+import System.Exit (die)
+
+exampleExpectedOutput = 6
+
+parseInput :: String -> IO [String]
+parseInput filename = do
+ input <- readFile filename
+ return $ map (foldl' intersect ['a'..'z'] . lines) $ splitOn "\n\n" input
+
+compute :: [String] -> Int
+compute = sum . map length
+
+main :: IO ()
+main = do
+ example <- parseInput "example"
+ let exampleOutput = compute example
+ when (exampleOutput /= exampleExpectedOutput) (die $ "example failed: got " ++ show exampleOutput ++ " instead of " ++ show exampleExpectedOutput)
+ input <- parseInput "input"
+ print $ compute input