public void Part1() { var answer = Day06.Part1(); answer.Should().NotBe(-1); answer.Should().Be(359344L); }
public void Part1_Example(int iterations, int expected) { var answer = Day06.Part1(true, iterations); answer.Should().Be(expected); }