Exemplo n.º 1
0
        public void Solution1()
        {
            var input = InputReader.ReadLines("Day14/input.txt");

            Console.WriteLine(Day14.SolveV1(input));
        }
Exemplo n.º 2
0
        public void ExamplePart1()
        {
            var input = InputReader.ReadLines("Day14/input-example1.txt");

            Day14.SolveV1(input).Should().Be(165);
        }