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

            Assert.AreEqual(
                7817357407588ul,
                day.Solve1(Day14.PUZZLE_INPUT));
        }
Exemple #2
0
        public void Test1FromExample()
        {
            var day = new Day14();

            Assert.AreEqual(
                165ul,
                day.Solve1(TEST_INPUT_1));
        }