Skip to content

Commit 0c1648b

Browse files
author
Ihssaneabousshal
committed
Runtime: 2 ms (Top 41.86%) | Memory: 42.7 MB (Top 13.82%)
1 parent fdff6de commit 0c1648b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/U/Unique Paths III/Unique Paths III.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 2 ms (Top 41.86%) | Memory: 42.7 MB (Top 13.82%)
12
class Solution {
23
int walk = 0;
34
public int uniquePathsIII(int[][] grid) {
@@ -37,4 +38,4 @@ public int ways(int[][] grid, int cr, int cc, int m, int n, int count) {
3738
grid[cr][cc] = 0;
3839
return ans;
3940
}
40-
}
41+
}

0 commit comments

Comments
 (0)