This repository contains my personal solutions for the Advent of Code for 2022.
This year I decided to use C, so all the solutions here are written in GNU-ish C, with a simple Makefile to get everything compiled.
To compile the program, just run:
$ make
... and you'll get a binary in the root directory named aoc
. Run this to run
all days' solutions.
There is a unit test suite as well.
First, ensure you have cloned all submodules as we pull in an external library:
git submodule update --init
Then you can compile and run the test suite:
$ make test