This repository implements solutions to the puzzles in the 2022 Advent of Code using C#.
This was a vehicle to learn C#, so I presume not everything done here will be deemed idiomatic by language specialists.
Generally speaking, the solutions are organised predominantly for comprehension. They strive to arrive at an answer in a reasonable period of time, but they typically prioritise optimal understanding over optimal performance.
The examples are representative of my thinking and coding style.
The project requires .Net 8.0
, but any reasonably current version of
.Net will likely work. I tend to code done the middle of any language
specification.
If you use a .Net manager that responds to .tool-versions
, you should
be switched to correct version automatically. I recommend ASDF
for those on platforms that support it.
The project has a small Makefile
that scripts common build, run, and test
commands.
$ make build
$ make clean
$ make run
$ make verify
- app: A console app that invokes a given day's runner.
- data: Puzzle input organised by day
- lib: Homegrown utilities
- site: A local version of the instruction pages
- src: Puzzle solutions organised by day
- test: A simple set of regression tests
Modify the code in the simple console application in /app/Program.cs
.
Then, simply execute the following command in your terminal from the project root.
$ make run
The only tests are a set of checks to verify solved puzzles.
I often refactor my solutions for clarity (or as I learn new techniques in subsequent puzzles), so it is helpful to have these simple tests to give my refactors some confidence.
To execute the tests, simply execute the following command in your terminal from the project root.
$ make verify