prepping for day two
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -6,4 +6,7 @@ var dayOneInput = await File.ReadAllTextAsync("./Input/DayOne.txt");
|
||||
AdventSolver<SecretEntrance>.Solve(dayOneInput, 1, "Secret Entrance");
|
||||
|
||||
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