diff --git a/AdventOfCode2025/AdventOfCode2025.csproj b/AdventOfCode2025/AdventOfCode2025.csproj index 8699045..ccf19fb 100644 --- a/AdventOfCode2025/AdventOfCode2025.csproj +++ b/AdventOfCode2025/AdventOfCode2025.csproj @@ -36,6 +36,10 @@ PreserveNewest + + + PreserveNewest + diff --git a/AdventOfCode2025/Laboratories.cs b/AdventOfCode2025/Laboratories.cs new file mode 100644 index 0000000..c084d98 --- /dev/null +++ b/AdventOfCode2025/Laboratories.cs @@ -0,0 +1,9 @@ +namespace AdventOfCode2025; + +public class Laboratories : IAdventSolution +{ + public AdventSolution Solve(string input) + { + throw new NotImplementedException(); + } +} \ No newline at end of file diff --git a/AdventOfCode2025/Program.cs b/AdventOfCode2025/Program.cs index b3a385a..cac40e3 100644 --- a/AdventOfCode2025/Program.cs +++ b/AdventOfCode2025/Program.cs @@ -18,4 +18,7 @@ var dayFiveInput = await File.ReadAllTextAsync("./Input/DayFive.txt"); AdventSolver.Solve(dayFiveInput, 5, "Cafeteria"); var daySixInput = await File.ReadAllTextAsync("./Input/DaySix.txt"); -AdventSolver.Solve(daySixInput, 6, "Trash Compactor"); \ No newline at end of file +AdventSolver.Solve(daySixInput, 6, "Trash Compactor"); + +var daySevenInput = await File.ReadAllTextAsync("./Input/Test.txt"); +AdventSolver.Solve(daySevenInput, 7, "Laboratories"); \ No newline at end of file