Add Day10 implementation with puzzle-solving logic and tests

This commit is contained in:
Sebastian Lindemeier
2025-12-11 06:02:07 +01:00
parent 82772fd4e0
commit 6621a36021
3 changed files with 150 additions and 1 deletions
+7 -1
View File
@@ -4,7 +4,7 @@ using System.Globalization;
using AoC_2025;
var rootPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
var day01 = new Day01();
/*var day01 = new Day01();
string day01Path = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day01.txt";
Console.WriteLine(day01.SolvePart1(day01Path));
Console.WriteLine(day01.SolvePart2(day01Path));
@@ -56,4 +56,10 @@ var day09 = new Day09();
string day09Path = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day09.txt";
Console.WriteLine(day09.SolvePart1(day09Path));
Console.WriteLine(day09.SolvePart2(day09Path));
Console.WriteLine();*/
var day10 = new Day10();
string day10Path = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day10.txt";
Console.WriteLine(day10.SolvePart1(day10Path));
Console.WriteLine(day10.SolvePart2(day10Path));
Console.WriteLine();