/aoc2018

Advent of Code solutions in C++

Primary LanguageC++

AOC 2018

Solutions to Advent of Code 2018 written in C++.

Building

Executables can be built with cmake. There is one executable for each day, named dayXX for day XX.

This is an example of how to build:

mkdir build && cd build
cmake ..
cmake --build .

And to execute:

./dayXX < ../input/dayXX.txt