Example #1
0
        public void Test1PuzzleInput()
        {
            var day01 = new Day01();

            Assert.AreEqual(
                956091,
                day01.Solve1(Day01.PUZZLE_INPUT));
        }
Example #2
0
        public void Test1FromExample()
        {
            var day01 = new Day01();

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