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"> <Content Include="Input\DayTwo.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content> </Content>
<None Remove="Input\DayThree.txt" />
<Content Include="Input\DayThree.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

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