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