4 lines
70 B
Haskell
4 lines
70 B
Haskell
module Day10 where
|
|
|
|
parse :: String -> [Int]
|
|
parse = map read . lines
|