prep day 7
This commit is contained in:
@@ -36,6 +36,10 @@
|
|||||||
<Content Include="Input\DaySix.txt">
|
<Content Include="Input\DaySix.txt">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
|
<None Remove="Input\DaySeven.txt" />
|
||||||
|
<Content Include="Input\DaySeven.txt">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</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();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -18,4 +18,7 @@ var dayFiveInput = await File.ReadAllTextAsync("./Input/DayFive.txt");
|
|||||||
AdventSolver<Cafeteria>.Solve(dayFiveInput, 5, "Cafeteria");
|
AdventSolver<Cafeteria>.Solve(dayFiveInput, 5, "Cafeteria");
|
||||||
|
|
||||||
var daySixInput = await File.ReadAllTextAsync("./Input/DaySix.txt");
|
var daySixInput = await File.ReadAllTextAsync("./Input/DaySix.txt");
|
||||||
AdventSolver<TrashCompactor>.Solve(daySixInput, 6, "Trash Compactor");
|
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