Day 1 part 1
This commit is contained in:
parent
670a10eb39
commit
34d5494402
|
@ -0,0 +1,19 @@
|
||||||
|
import System.File.ReadWrite
|
||||||
|
import Data.String
|
||||||
|
import Data.List1
|
||||||
|
|
||||||
|
part1 : String -> IO ()
|
||||||
|
part1 input =
|
||||||
|
let inputLines = lines input
|
||||||
|
grouped = split (== "") inputLines
|
||||||
|
parsed = map (map cast) grouped
|
||||||
|
totals = map (foldr (+) 0) parsed
|
||||||
|
in do printLn $ foldr max 0 totals
|
||||||
|
|
||||||
|
main : IO ()
|
||||||
|
main = do file <- readFile "input"
|
||||||
|
case file of
|
||||||
|
Right content =>
|
||||||
|
do putStr "Part 1: "
|
||||||
|
part1 content
|
||||||
|
Left err => printLn err
|
Loading…
Reference in New Issue