Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 522 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 522 Bytes

Advent of Code 2022

Solutions to Advent of Code 2022. The solutions are written in C++20 and generally try to make use of the range-v3 library.

Building

Install range-v3 as a dependency:

sudo apt install librange-v3-dev

Compile the code for any particular day with the following command:

make day1

Running

Exectute the code for any particular day with the associated input file:

./day1/sol < day1/input.txt