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

            Assert.AreEqual(
                2084ul,
                day.Solve2(Day20.PUZZLE_INPUT));
        }
Ejemplo n.º 2
0
        public void Test2FromExample()
        {
            var day = new Day20();

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