Example #1
0
        public void Part1()
        {
            // Day24.IsValidForInput("13579246899999").Should().Be(true);

            // 55555555555555 too low
            var answer = Day24.Part1();

            answer.Should().NotBe(-1);
            answer.Should().Be(0);
        }
Example #2
0
        public void Part1_Example()
        {
            var answer = Day24.Part1(true);

            answer.Should().Be(-1);
        }