We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdff6de commit 0c1648bCopy full SHA for 0c1648b
scripts/algorithms/U/Unique Paths III/Unique Paths III.java
@@ -1,3 +1,4 @@
1
+// Runtime: 2 ms (Top 41.86%) | Memory: 42.7 MB (Top 13.82%)
2
class Solution {
3
int walk = 0;
4
public int uniquePathsIII(int[][] grid) {
@@ -37,4 +38,4 @@ public int ways(int[][] grid, int cr, int cc, int m, int n, int count) {
37
38
grid[cr][cc] = 0;
39
return ans;
40
}
-}
41
+}
0 commit comments