From 497bdd7a3b37cb43a3b457adcc85d82be6cb3a23 Mon Sep 17 00:00:00 2001 From: Boxfriend Date: Fri, 5 Dec 2025 11:42:55 -0500 Subject: [PATCH] prepping day 5 --- AdventOfCode2025/Cafeteria.cs | 9 +++++++++ AdventOfCode2025/Program.cs | 5 ++++- 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 AdventOfCode2025/Cafeteria.cs diff --git a/AdventOfCode2025/Cafeteria.cs b/AdventOfCode2025/Cafeteria.cs new file mode 100644 index 0000000..9a71888 --- /dev/null +++ b/AdventOfCode2025/Cafeteria.cs @@ -0,0 +1,9 @@ +namespace AdventOfCode2025; + +public class Cafeteria : IAdventSolution +{ + public AdventSolution Solve(string input) + { + throw new NotImplementedException(); + } +} \ No newline at end of file diff --git a/AdventOfCode2025/Program.cs b/AdventOfCode2025/Program.cs index 1f40374..d1eb396 100644 --- a/AdventOfCode2025/Program.cs +++ b/AdventOfCode2025/Program.cs @@ -12,4 +12,7 @@ var dayThreeInput = await File.ReadAllTextAsync("./Input/DayThree.txt"); AdventSolver.Solve(dayThreeInput, 3, "Lobby"); var dayFourInput = await File.ReadAllTextAsync("./Input/DayFour.txt"); -AdventSolver.Solve(dayFourInput, 4, "Printing Department"); \ No newline at end of file +AdventSolver.Solve(dayFourInput, 4, "Printing Department"); + +var dayFiveInput = await File.ReadAllTextAsync("./Input/Test.txt"); +AdventSolver.Solve(dayFiveInput, 4, "Cafeteria"); \ No newline at end of file