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

Y2021.D10

Description

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

Synopsis

Documentation

part10A :: Text -> Int #

Solve part A

part10B :: Text -> Int #

Solve part B

parse10 :: [Char] -> Either Char [Char] #

Manual parser for a given input string. I tried a Seq intially, just a stock Lists as a stack works just as well.