Add Day 05 solution

This commit is contained in:
Sebastian Lindemeier
2025-12-05 07:25:59 +01:00
parent 389784ec76
commit 91ea80d2e3
4 changed files with 146 additions and 2 deletions
+6
View File
@@ -26,4 +26,10 @@ var day04 = new Day04();
string day04Path = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day04.txt";
Console.WriteLine(day04.SolvePart1(day04Path));
Console.WriteLine(day04.SolvePart2(day04Path));
Console.WriteLine();
var day05 = new Day05();
string day05Path = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day05.txt";
Console.WriteLine(day05.SolvePart1(day05Path));
Console.WriteLine(day05.SolvePart2(day05Path));
Console.WriteLine();