prepping for day two
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
@@ -7,3 +7,6 @@ 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");
|
||||||
Reference in New Issue
Block a user