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