Exemple #1
0
        public void Test2PuzzleInput()
        {
            var day = new Day14();

            Assert.AreEqual(
                4335927555692ul,
                day.Solve2(Day14.PUZZLE_INPUT));
        }
Exemple #2
0
        public void Test2FromExample()
        {
            var day = new Day14();

            Assert.AreEqual(
                208ul,
                day.Solve2(TEST_INPUT_2));
        }