adventofcode-0.1.0.0: Haskell solutions to adventofcode
LicenseMIT
Maintainer@tylerjl
Safe HaskellSafe-Inferred
LanguageHaskell2010

Y2021.D11

Description

Solutions to the 2021 day 11 set of problems for adventofcode.com.

Synopsis

Documentation

parse11 :: Text -> Octopi #

Parse puzzle input into a octagon rectangular grid. Need octagons in order to correctly ask for diagonal neighbors.

part11A :: Text -> Int #

Solution to part A

part11B :: Text -> Int #

Solution to part B

solve11A :: Octopi -> Int #

Solve part A

solve11B :: Octopi -> Int #

Solve part B