From 08d495907f44295ec9c585dab292c58f215bd597 Mon Sep 17 00:00:00 2001 From: Boxfriend Date: Sat, 6 Dec 2025 00:20:40 -0500 Subject: [PATCH] prep for day 6 --- AdventOfCode2025/Program.cs | 5 ++++- AdventOfCode2025/TrashCompactor.cs | 9 +++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 AdventOfCode2025/TrashCompactor.cs 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