prepping Day 4
This commit is contained in:
9
AdventOfCode2025/PrintingDepartment.cs
Normal file
9
AdventOfCode2025/PrintingDepartment.cs
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
namespace AdventOfCode2025;
|
||||||
|
|
||||||
|
public class PrintingDepartment : IAdventSolution
|
||||||
|
{
|
||||||
|
public AdventSolution Solve(string input)
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -9,4 +9,7 @@ var dayTwoInput = await File.ReadAllTextAsync("./Input/DayTwo.txt");
|
|||||||
AdventSolver<GiftShop>.Solve(dayTwoInput, 2, "Gift Shop");
|
AdventSolver<GiftShop>.Solve(dayTwoInput, 2, "Gift Shop");
|
||||||
|
|
||||||
var dayThreeInput = await File.ReadAllTextAsync("./Input/DayThree.txt");
|
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/Test.txt");
|
||||||
|
AdventSolver<PrintingDepartment>.Solve(dayFourInput, 4, "Printing Department");
|
||||||
Reference in New Issue
Block a user