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