Beispiel #1
0
        public void Part1()
        {
            var answer = Day06.Part1();

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

            answer.Should().Be(expected);
        }