These are my solutions to the "Advent of Code 2017" event. Feel free to look at them.
You must have my custom input/output library "IO" installed or it wont compile.
You can find this here
The file structure should look like:
- IO
- stuff in the IO folder
- advent2017
- main.cpp
- Makefile
- other stuff in advent2017 folder
- Put the desired day's function in the
main()
function in main.cppint main(){ day1(); return 0; }
- Run the
make
command (If this fails, trymake clean
and thenmake
) - Run
./advent