My solutions for advent of code
C++ solutions use the Clang "shebang" line so you can run them as script. With clang installed, just do
cd 2022/day4
./solution.cpp
Some solutions use the programming language D.
To run a solution, with D installed, just do
cd 2021/day4
./solution.d
or
cd 2021/day4
rdmd solution.d
Each script is self-compiling thanks to rdmd.
Code available under the MIT license, see LICENSE