Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 425 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 425 Bytes

AoC 2024 - Solutions in C#

This is my solutions in C# to AoC 2024.

How to run?

  1. Install the dotnet command line tool
  2. Download input for day N from AoC 2024 and place into the folder of the day as a file named input.
  3. Run with:

For day N, part 1:

$ cd N
$ dotnet run

For day N, part 2:

$ cd N_2
$ dotnet run