From 927810fb0c10fcea605026c8354b93d683fc585e Mon Sep 17 00:00:00 2001 From: Sebastian Lindemeier Date: Tue, 9 Dec 2025 11:11:32 +0100 Subject: [PATCH] Add execution logic for Days 07, 08, and 09 to Program.cs --- AoC_2025.Runner/Program.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/AoC_2025.Runner/Program.cs b/AoC_2025.Runner/Program.cs index c0967de..7ae70c1 100644 --- a/AoC_2025.Runner/Program.cs +++ b/AoC_2025.Runner/Program.cs @@ -38,4 +38,22 @@ 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(); + +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(); \ No newline at end of file