Advent of Code 2024
cd ./cmd/<dayxx>
go build
./day01 -part a -file input
./day01 -part b -file input
./day02 -part a -file input
./day02 -part b -file input
./day03 -part a -file input
./day03 -part b -file input
./day04 -part a -file input
./day04 -part b -file input
./day05 -part a -file input
./day05 -part b -file input
./day06 -part a -file input
./day07 -part a -file input
./day07 -part b -file input
./day09 -part a -file input
./day09 -part b -file input
./day10 -part a -file input
./day10 -part b -file input
This one was nasty. My code won't work for other inputs - I manually worked out where the repetition happened using a spreadsheet (it was at the first 7 digits of the program) so I used that as the basis of my calculation. It gets the right answer in a few seconds, but isn't a good bit of code.
./day17 -part a -file input
./day17 -part b -file input
./day23 -part a -file input
./day24 -part a -file input
./day25 -part a -file input