Beispiel #1
0
        public void Test1PuzzleInput()
        {
            var day = new Day13();

            Assert.AreEqual(
                246,
                day.Solve1(Day13.PUZZLE_INPUT));
        }
Beispiel #2
0
        public void Test1FromExample()
        {
            var day = new Day13();

            Assert.AreEqual(
                295,
                day.Solve1(TEST_INPUT));
        }