예제 #1
0
파일: Day12.cs 프로젝트: sweenist/AoC2020
        private static void Problem2()
        {
            var navSystem = new NavigationSystem(LoadInstructions(_sampleInput));

            navSystem.Execute().Should().Be(286);

            navSystem = new NavigationSystem(LoadInstructions(_input));
            Console.WriteLine($"Real Manhattan Distance: {navSystem.Execute()}");
        }