Skip to content

My solutions to the Advent of Code puzzles (implemented in C#).

License

Notifications You must be signed in to change notification settings

bmic86/advent-of-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Advent of Code

My Advent of Code puzzles solutions implemented in C#.

I'm using AoCHelper support library to organize and run my code.

Current progress

[2022]     4 ⭐

[2021]     8 ⭐

[2020]     8 ⭐

[2019]     8 ⭐

[2018]     8 ⭐

[2017]     8 ⭐

[2016]     8 ⭐

[2015]   37 ⭐

Total     89 ⭐


How to run it?

Every event year has its own .csproj which builds a separate console application.

Executing one of them without any parameters, like this:

.\AdventOfCode.Year2022.exe

Runs only results for the latest solved day from corresponding year event (in this example: 2022).


To show results of all solved days in a year use all parameter.

.\AdventOfCode.Year2022.exe all

There is also possible to run solutions only for particular days, by passing day numbers as a separate parametes.

For example, to run only solutions for day 1 and 3 from 2022 year event:

.\AdventOfCode.Year2022.exe 1 3