C++ header only library for solving Advent of Code.
Add below to CMakeLists.txt:
include(FetchContent)
fetchcontent_declare(aocpp GIT_REPOSITORY https://github.com/e4ac/aocpp GIT_TAG main)
fetchcontent_makeavailable(aocpp)Build and test with cmake.
cmake -B bin
cmake --build bin --parallel 8
ctest --test-dir bin --parallel 8