Code to solve the Advent of Code puzzles. This year, I'm trying to use the puzzles as a prompt to learn Haskell.
Learn you a Haskell, Introduction to Haskell 98, and Hackage are good resources.
I'm using the basic Haskell Platform installation (install with
$ sudo aptitude install haskell-platform
).
Compile the code with
ghc -o advent01 advent01.hs
then run it as
advent01
(Using the Modest styles.)