Exemplo n.º 1
0
        public void Test2PuzzleInput()
        {
            var day = new Day23();

            Assert.AreEqual(
                11498506800ul,
                day.Solve2(Day23.PUZZLE_INPUT, 10000000ul));
        }
Exemplo n.º 2
0
        public void Test2FromExample()
        {
            var day = new Day23();

            Assert.AreEqual(
                149245887792ul,
                day.Solve2(TEST_INPUT, 10000000ul));
        }