コード例 #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()}");
        }