prepping for day two

This commit is contained in:
2025-12-03 12:50:31 -05:00
parent 1ac8cee3d5
commit 633a9d9248
2 changed files with 8 additions and 1 deletions

View File

@@ -20,6 +20,10 @@
<Content Include="Input\DayTwo.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Remove="Input\DayThree.txt" />
<Content Include="Input\DayThree.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>

View File

@@ -7,3 +7,6 @@ AdventSolver<SecretEntrance>.Solve(dayOneInput, 1, "Secret Entrance");
var dayTwoInput = await File.ReadAllTextAsync("./Input/DayTwo.txt");
AdventSolver<GiftShop>.Solve(dayTwoInput, 2, "Gift Shop");
var dayThreeInput = await File.ReadAllTextAsync("./Input/Test.txt");
AdventSolver<Lobby>.Solve(dayThreeInput, 3, "Lobby");