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