Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 809 Bytes

File metadata and controls

12 lines (8 loc) · 809 Bytes

Advent of Code

This repository contains my solutions for Advent Of Code.

Beware, inside are spoilers, so I'd recommend trying to solve them yourself before checking other's implementations. Ultimately the goal is to have fun and learn some new things!

The implementations are written in C#, and I have updated all scripts to use .NET's file based applications. These can be run directly without the need for a project file:

dotnet run 01.cs

Additionally, I have created a number of helper classes for common tasks, importing and loading input files as well as timing and asserting the expected results. These are combined into a helper assembly in the Helpers folder.