Add execution logic for Days 07, 08, and 09 to Program.cs
This commit is contained in:
parent
0101f506cb
commit
927810fb0c
|
|
@ -39,3 +39,21 @@ string day06Path = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day06.txt";
|
|||
Console.WriteLine(day06.SolvePart1(day06Path));
|
||||
Console.WriteLine(day06.SolvePart2(day06Path));
|
||||
Console.WriteLine();
|
||||
|
||||
var day07 = new Day07();
|
||||
string day07Path = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day07.txt";
|
||||
Console.WriteLine(day07.SolvePart1(day07Path));
|
||||
Console.WriteLine(day07.SolvePart2(day07Path));
|
||||
Console.WriteLine();
|
||||
|
||||
var day08 = new Day08(1000);
|
||||
string day08Path = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day08.txt";
|
||||
Console.WriteLine(day08.SolvePart1(day08Path));
|
||||
Console.WriteLine(day08.SolvePart2(day08Path));
|
||||
Console.WriteLine();
|
||||
|
||||
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();
|
||||
Loading…
Reference in New Issue