aboutsummaryrefslogtreecommitdiff
path: root/2020/06-Custom_Customs/first.hs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--2020/06-Custom_Customs/first.hs26
1 files changed, 26 insertions, 0 deletions
diff --git a/2020/06-Custom_Customs/first.hs b/2020/06-Custom_Customs/first.hs
new file mode 100644
index 0000000..883d6e4
--- /dev/null
+++ b/2020/06-Custom_Customs/first.hs
@@ -0,0 +1,26 @@
+-- requires cabal install --lib split Unique
+module Main (main) where
+
+import Control.Monad (void, when)
+import Data.List.Split (splitOn)
+import Data.List.Unique (sortUniq)
+import Data.Monoid (mconcat)
+import System.Exit (die)
+
+exampleExpectedOutput = 11
+
+parseInput :: String -> IO [String]
+parseInput filename = do
+ input <- readFile filename
+ return $ map (sortUniq . mconcat . 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