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

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

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