This repository contains my solutions to the Advent of Code puzzles in 2024.
This year, I'm using this as an opportunity to get better a problem solving in Go. Will try to structure the whole project in a way that is easy to navigate and understand.
The solutions are in the ./days
directory. Each day has its own directory, and
there is a solution for each part of the puzzle. The input directory contains
the puzzle input for each day.
To run the code, you need to have Go installed. You can run the code by running the following command:
Run build make command with tests
make all
Build the application
make build
Run the application
make run
Live reload the application:
make watch
Run the test suite:
make test
Watch the test suite:
make watch-test
Clean up binary from the last build:
make clean