Add Day10 implementation with puzzle-solving logic and tests
This commit is contained in:
@@ -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();
|
||||
Reference in New Issue
Block a user