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

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

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