Add execution logic for Days 07, 08, and 09 to Program.cs

This commit is contained in:
Sebastian Lindemeier 2025-12-09 11:11:32 +01:00
parent 0101f506cb
commit 927810fb0c
1 changed files with 18 additions and 0 deletions

View File

@ -38,4 +38,22 @@ var day06 = new Day06();
string day06Path = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day06.txt"; string day06Path = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day06.txt";
Console.WriteLine(day06.SolvePart1(day06Path)); Console.WriteLine(day06.SolvePart1(day06Path));
Console.WriteLine(day06.SolvePart2(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(); Console.WriteLine();