Skip to content

Files

Latest commit

 

History

History
19 lines (15 loc) · 552 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 552 Bytes

advent-of-code_2022

C++ 11 solutions to AoC 2022

Usage

To build all solutions, run the following from the top-level directory, or from a sub-directory to build only the corresponding day's solution:

make

AoC provides unique input files for each user. My own input files, along with their correct answers are provided as tush test cases, which can be run with:

make test

Don't forget to clean all binaries and temporary files when not needed:

make clean