Add Day 06 solution, needs cleanup later

This commit is contained in:
Sebastian Lindemeier
2025-12-06 10:54:11 +01:00
parent fd417a6e97
commit 47f468ff68
4 changed files with 143 additions and 8 deletions
+6
View File
@@ -32,4 +32,10 @@ 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();
var day06 = new Day06();
string day06Path = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day06.txt";
Console.WriteLine(day06.SolvePart1(day06Path));
Console.WriteLine(day06.SolvePart2(day06Path));
Console.WriteLine();