Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 859 Bytes

README.md

File metadata and controls

37 lines (23 loc) · 859 Bytes

Advent of Code 2k22: My Solutions

Test Suite

This repository contains my personal solutions for the Advent of Code for 2022.

Running

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.

Testing

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