prepping day 5

This commit is contained in:
2025-12-05 11:42:55 -05:00
parent 35eb89c494
commit 497bdd7a3b
2 changed files with 13 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
namespace AdventOfCode2025;
public class Cafeteria : IAdventSolution
{
public AdventSolution Solve(string input)
{
throw new NotImplementedException();
}
}

View File

@@ -13,3 +13,6 @@ AdventSolver<Lobby>.Solve(dayThreeInput, 3, "Lobby");
var dayFourInput = await File.ReadAllTextAsync("./Input/DayFour.txt");
AdventSolver<PrintingDepartment>.Solve(dayFourInput, 4, "Printing Department");
var dayFiveInput = await File.ReadAllTextAsync("./Input/Test.txt");
AdventSolver<Cafeteria>.Solve(dayFiveInput, 4, "Cafeteria");