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

            answer.Should().NotBe(-1);
            answer.Should().Be(4103154L);
        }
Beispiel #2
0
        public void Part1_Example()
        {
            var answer = Day03.Part1(true);

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