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