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

            answer.Should().NotBe(-1);
            answer.Should().Be(600458);
        }
Beispiel #2
0
        public void Part2()
        {
            var answer = Day22.Part2();

            answer.Should().NotBe(-2);
            answer.Should().Be(1334275219162622L);
        }
Beispiel #3
0
        public void Part1_Example()
        {
            var answer = Day22.Part1(true);

            answer.Should().Be(474140L);
        }
Beispiel #4
0
        public void Part2_Example()
        {
            var answer = Day22.Part2(true);

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