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

            Assert.AreEqual(
                1685,
                day.Solve1(Day21.PUZZLE_INPUT));
        }
Exemple #2
0
        public void Test1FromExamples()
        {
            var day = new Day21();

            Assert.AreEqual(
                5, // kfcds, nhms, sbzzf x2, trh
                day.Solve1(TEST_INPUT));
        }