You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
361 B
Haskell
17 lines
361 B
Haskell
2 years ago
|
module Days.Day20 (day20) where
|
||
|
|
||
|
import AOC (Solution (..))
|
||
|
import qualified Data.Text as T
|
||
|
|
||
|
day20 :: Solution
|
||
|
day20 = Solution parseInput part1 part2
|
||
|
|
||
|
parseInput :: T.Text -> a
|
||
|
parseInput = error "parseInput not defined for day 20"
|
||
|
|
||
|
part1 :: a -> Int
|
||
|
part1 = error "part1 not defined for day 20"
|
||
|
|
||
|
part2 :: a -> Int
|
||
|
part2 = error "part2 not defined for day 20"
|