prep for day 6
This commit is contained in:
@@ -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");
|
||||||
9
AdventOfCode2025/TrashCompactor.cs
Normal file
9
AdventOfCode2025/TrashCompactor.cs
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
namespace AdventOfCode2025;
|
||||||
|
|
||||||
|
public class TrashCompactor : IAdventSolution
|
||||||
|
{
|
||||||
|
public AdventSolution Solve(string input)
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user