diff --git a/AdventOfCode2025/Program.cs b/AdventOfCode2025/Program.cs index 1288d69..8b1a9ba 100644 --- a/AdventOfCode2025/Program.cs +++ b/AdventOfCode2025/Program.cs @@ -15,4 +15,7 @@ var dayFourInput = await File.ReadAllTextAsync("./Input/DayFour.txt"); AdventSolver.Solve(dayFourInput, 4, "Printing Department"); var dayFiveInput = await File.ReadAllTextAsync("./Input/DayFive.txt"); -AdventSolver.Solve(dayFiveInput, 4, "Cafeteria"); \ No newline at end of file +AdventSolver.Solve(dayFiveInput, 5, "Cafeteria"); + +var daySixInput = await File.ReadAllTextAsync("./Input/Test.txt"); +AdventSolver.Solve(daySixInput, 6, "Trash Compactor"); \ No newline at end of file diff --git a/AdventOfCode2025/TrashCompactor.cs b/AdventOfCode2025/TrashCompactor.cs new file mode 100644 index 0000000..3808fff --- /dev/null +++ b/AdventOfCode2025/TrashCompactor.cs @@ -0,0 +1,9 @@ +namespace AdventOfCode2025; + +public class TrashCompactor : IAdventSolution +{ + public AdventSolution Solve(string input) + { + throw new NotImplementedException(); + } +} \ No newline at end of file