Personal repository of Advent of Code solutions.
Directly quoted from original page:
Advent of Code is an Advent calendar of small programming puzzles for a variety of skill levels that can be solved in any programming language you like. People use them as interview prep, company training, university coursework, practice problems, a speed contest, or to challenge each other.
This is a C++ project and build manages by cmake.
mkdir build
cd build
cmake ../
makeThere is a Cmake option to choose which inputs is using while compiling and running. By default this option is off state. If it is off state, make command copy files under inputs/test folder otherwise inputs/real folder.
-DREAL=ONI am not going to share real inputs as stated in the Advent of Code about page. If you'd like test my code with your real input, please locate those on proper folder.
Build artifacts are put under related year folder. 2024 executable is under 2024/ folder. Executable name is AoC.