diff --git a/Day10/Program.cs b/Day10/Program.cs index bc6d500..0ef944f 100644 --- a/Day10/Program.cs +++ b/Day10/Program.cs @@ -29,6 +29,7 @@ int Part2(int[,] mapInput, List<(int, int)> directions) return totalRating; } +// Could reuse the trailHead method with minor edits int FindDistinctTrails(int r, int c, int[,] mapInput, List<(int, int)> directions) { var stack = new Stack>();