[SPOILER] Advent of Code 2025 Solutions
Find a file
2025-12-09 15:27:39 -06:00
.devcontainer Initial commit, solve day 1 2025-12-01 11:59:22 -06:00
.vscode Initial commit, solve day 1 2025-12-01 11:59:22 -06:00
bin fix seven 2025-12-09 15:27:39 -06:00
inputs six seven 2025-12-09 10:27:09 -06:00
src six seven 2025-12-09 10:27:09 -06:00
test Initial commit, solve day 1 2025-12-01 11:59:22 -06:00
.gitignore Initial commit, solve day 1 2025-12-01 11:59:22 -06:00
advent2025.cabal forgot to add day 4 but here it is 2025-12-07 20:06:33 -06:00
CHANGELOG.md Initial commit, solve day 1 2025-12-01 11:59:22 -06:00
LICENSE Initial commit, solve day 1 2025-12-01 11:59:22 -06:00
README.md Make README clearer 2025-12-01 12:04:29 -06:00

Advent of Code 2025 Solutions

My solutions for the Advent of Code 2025 problems.

Running

It is recommended that you use the included dev container because Haskell's toolchain sucks. Otherwise, install GHC and Cabal using GHCup because that's less of a pain than managing it yourself.

Each day is setup as a unique executable target in Cabal. To run the code for a specific day (day 1 used as example):

cabal run day01

Comprehensive test suite that checks against AoC example solutions will be added at some point.