Esempio n. 1
0
        public void Test2PuzzleInput()
        {
            var day01 = new Day01();

            Assert.AreEqual(
                79734368,
                day01.Solve2(Day01.PUZZLE_INPUT));
        }
Esempio n. 2
0
        public void Test2FromExample()
        {
            var day01 = new Day01();

            Assert.AreEqual(
                241861950,
                day01.Solve2(
                    new long[]
            {
                1721,
                979,
                366,
                299,
                675,
                1456,
            }));
        }