public void TestPart2(string path, int result) { var day3 = new Day3Part2(); var val = day3.Solve(path); val.ShouldBe(result); }
public void Setup() { puzzle = new Day3Part2(); }