This repository serves as a template for solving Advent of Code puzzles in Go.
- You can use the Github Template Feature or simply download the repository to your machine.
- Run
make initto initialize emptyinput.txtfiles. The files are gitignored as per the AoC ToS. - Solve a specific day by copying your personal input file into the respective
input.txtof the day's directory and implement theSolvePuzzle1/SolvePuzzle2. - Run the specific day via
make day-<day_number>or run the test file via your favourite IDE (make sure to use verbose mode). - Validate the printed results on the Advent of Code website.