コード例 #1
0
ファイル: day18.cs プロジェクト: scottbilas/advent-of-code
        public static int FindMinimumSteps(char[,] grid, NPath render = null)
        {
            var graph = new VaultGraph(grid);

            if (render != null)
            {
                graph.Render(render);
            }
            return(graph.FindMinimumSteps());
        }