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

            Assert.AreEqual(
                4385176320,
                day.Solve2(Day03.PUZZLE_INPUT));
        }
Exemplo n.º 2
0
        public void Test2FromExample()
        {
            var day = new Day03();

            Assert.AreEqual(
                336,
                day.Solve2(TEST_MAP));
        }