Advent of Code 2024 problems
I put my inputs in a separate private repository. The scripts expect the input files to be in inputs/D<NUMBER>/.
If you want to run your own inputs against my code, then you'll have to set this up yourself.
So for Day 01, the script would expect the input file to be in
inputs/D01/input
Day 01 (Code)
For day one, run the go app via
cd D01
go run .Day 02 (Code)
For day two, run the go app via
cd D02
go run .Day 03 (Code)
For day three, run the bash script via
cd D03
chmod +x ./calc.sh
./calc.shDay 04 (Code)
For day four, run the go app via
cd D04
go run .Here some crude drawings detailing (really badly) what math i came up with
Day 05 (Code)
For day five, run the go app via
cd D05
go run .Day 06 (Code)
For day six, run the go app via
cd D06
go run .Day 07 (Code)
For day seven, run the go app via
cd D07
go run .Day 08 (Code)
For day eight, run the go app via
cd D08
go run .Day 09 (Code)
For day nine, run the go app via
cd D09
go run .Day 10 (Code)
For day ten, run the go app via
cd D10
go run .Day 11 (Code)
For day eleven, run the go app via
cd D11
go run .