Challenge for ERNI Spain
Solutions in C++ 17 by Aron Galdon Gines
A C++ compiler and CMake are required in any case.
Windows:
cmake -B build
cmake --build build
.\build\src\day01\Debug\D01.exe
# ...
.\build\tests\day01\Debug\tst_D01.exe
# ...
Linux:
cmake -B build
cmake --build build
./build/src/day01/Debug/D01.exe
# ...
./build/tests/day01/Debug/tst_D01.exe
# ...