This repository contains my C++ solutions for the Advent of Code 2024.
src/
: Contains solutions for each day.tests/
: Unit tests for the solutions.data/
: Input files for each problem.
- Clone the repository.
- Initialize submodules:
git submodule update --init --recursive
. - Create a build directory:
mkdir build && cd build
. - Run CMake:
cmake ..
. - Build:
cmake --build .
.