fixup! feat(day4): Implement part2

This commit is contained in:
kale 2024-12-09 12:50:43 +01:00
parent 101634cb2b
commit fab78be67b
Signed by: kalmenn
GPG key ID: F500055C44BC3834

View file

@ -76,4 +76,6 @@ main = do
args <- getArgs
(fp:_) <- return args
resPart1 <- part1 fp
resPart2 <- part2 fp
putStrLn $ "Solution (Part 1) : " ++ show resPart1
putStrLn $ "Solution (Part 2) : " ++ show resPart2