This repo contains my code and given input for solving the daily programming puzzles of AoC 2024 using C++.
make run DAY=<day_number>
: Compile and run the program for a specific day (e.g.,make run DAY=01
).make leaks DAY=<day_number>
: Check memory leaks usingvalgrind
for a specific day (e.g.,make leaks DAY=01
).make clean
: Remove the compiled binaries to clean the project directory.make help
: Display usage of Makefile in the terminal.