prep for day 6

This commit is contained in:
2025-12-06 00:20:40 -05:00
parent cf4bc005d5
commit 08d495907f
2 changed files with 13 additions and 1 deletions

View File

@@ -15,4 +15,7 @@ var dayFourInput = await File.ReadAllTextAsync("./Input/DayFour.txt");
AdventSolver<PrintingDepartment>.Solve(dayFourInput, 4, "Printing Department"); AdventSolver<PrintingDepartment>.Solve(dayFourInput, 4, "Printing Department");
var dayFiveInput = await File.ReadAllTextAsync("./Input/DayFive.txt"); var dayFiveInput = await File.ReadAllTextAsync("./Input/DayFive.txt");
AdventSolver<Cafeteria>.Solve(dayFiveInput, 4, "Cafeteria"); AdventSolver<Cafeteria>.Solve(dayFiveInput, 5, "Cafeteria");
var daySixInput = await File.ReadAllTextAsync("./Input/Test.txt");
AdventSolver<TrashCompactor>.Solve(daySixInput, 6, "Trash Compactor");

View File

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