Exemplo n.º 1
0
        public void ExamplePart1()
        {
            var input = InputReader.ReadAll("Day06/input-example.txt");

            Day06Part1.Solve(input).Should().Be(11);
        }
Exemplo n.º 2
0
        public void SolutionPart1()
        {
            var input = InputReader.ReadAll("Day06/input.txt");

            Console.WriteLine(Day06Part1.Solve(input));
        }