prepping day 5
This commit is contained in:
9
AdventOfCode2025/Cafeteria.cs
Normal file
9
AdventOfCode2025/Cafeteria.cs
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
namespace AdventOfCode2025;
|
||||||
|
|
||||||
|
public class Cafeteria : IAdventSolution
|
||||||
|
{
|
||||||
|
public AdventSolution Solve(string input)
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -12,4 +12,7 @@ var dayThreeInput = await File.ReadAllTextAsync("./Input/DayThree.txt");
|
|||||||
AdventSolver<Lobby>.Solve(dayThreeInput, 3, "Lobby");
|
AdventSolver<Lobby>.Solve(dayThreeInput, 3, "Lobby");
|
||||||
|
|
||||||
var dayFourInput = await File.ReadAllTextAsync("./Input/DayFour.txt");
|
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/Test.txt");
|
||||||
|
AdventSolver<Cafeteria>.Solve(dayFiveInput, 4, "Cafeteria");
|
||||||
Reference in New Issue
Block a user