Esempio n. 1
0
        public void Solution1()
        {
            var input = new List <int> {
                19, 41, 743, 13, 17, 29, 643, 37, 23
            };

            Console.WriteLine(Day13Part1.Solve(1015292, input));
        }
Esempio n. 2
0
        public void ExamplePart1()
        {
            var input = new List <int> {
                7, 13, 59, 31, 19
            };

            Day13Part1.Solve(939, input).Should().Be(295);
        }