示例#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()}");
        }