prep day 7

This commit is contained in:
2025-12-07 12:15:17 -05:00
parent 86947a6e6d
commit 1649440a6e
3 changed files with 17 additions and 1 deletions

View File

@@ -36,6 +36,10 @@
<Content Include="Input\DaySix.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Remove="Input\DaySeven.txt" />
<Content Include="Input\DaySeven.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>

View File

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

View File

@@ -19,3 +19,6 @@ AdventSolver<Cafeteria>.Solve(dayFiveInput, 5, "Cafeteria");
var daySixInput = await File.ReadAllTextAsync("./Input/DaySix.txt");
AdventSolver<TrashCompactor>.Solve(daySixInput, 6, "Trash Compactor");
var daySevenInput = await File.ReadAllTextAsync("./Input/Test.txt");
AdventSolver<Laboratories>.Solve(daySevenInput, 7, "Laboratories");