AdventOfCode 2023 Day05 Part2, Naïve implementation.

This commit is contained in:
2023-12-06 03:19:44 +01:00
parent 648e229d13
commit 6c2c1706e8
2 changed files with 44 additions and 2 deletions

View File

@@ -48,6 +48,16 @@ public class Day05_Tests
Assert.Equal("35", result);
}
[Fact]
public void ResolvePart2__Example()
{
Day05 day = new();
string result = day.ResolvePart2(_example);
Assert.Equal("46", result);
}
[Fact]
public void AlamanacMapping_ParseNext__Empty__Null()
{