feat: solve part 1

This commit is contained in:
Stevan Freeborn
2023-12-07 14:06:26 -06:00
parent 4621e17a8e
commit a84b0d07f0
9 changed files with 578 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
namespace CamelCards.Tests;
public class ProgramTests
{
[Fact]
public async Task Main_WhenCalledWithInputFile_ItShouldReturnExpectedResult()
{
var result = await Program.Main(["INPUT.txt"]);
result.Should().Be(251287184);
}
}