Esempio n. 1
0
        public void SolutionPart2()
        {
            var input = InputReader.ReadAll("Day06/input.txt");

            Console.WriteLine(Day06Part2.Solve(input));
        }
Esempio n. 2
0
        public void ExamplePart2()
        {
            var input = InputReader.ReadAll("Day06/input-example.txt");

            Day06Part2.Solve(input).Should().Be(6);
        }