Go solutions to the 2024 Advent of Code problems.
Download the puzzle input and store it in challenges/day{DD}/input/input.txt
where {DD}
is the day number.
The solutions can be run as follows:
go run ./challenges/day{DD}
For example, go run ./challenges/day01
runs the solution for the first day.
Run the solutions on test data:
go test ./challenges/day{DD} -v
The -v
flag can be omitted for less verbose output.