feat: solve part 2

This commit is contained in:
Stevan Freeborn
2023-12-07 19:34:55 -06:00
parent a84b0d07f0
commit 887e139d97
5 changed files with 192 additions and 51 deletions
+7
View File
@@ -8,4 +8,11 @@ public class ProgramTests
var result = await Program.Main(["INPUT.txt"]);
result.Should().Be(251287184);
}
[Fact]
public async Task Main_WhenCalledWithInputFileAsPart2_ItShouldReturnExpectedResult()
{
var result = await Program.Main(["INPUT.txt", "part2"]);
result.Should().Be(250757288);
}
}