Skip to content

Commit

Permalink
Time: 0 ms (100%), Space: 4.1 MB (44.05%) - LeetHub
Browse files Browse the repository at this point in the history
  • Loading branch information
hovanhoa committed Dec 31, 2024
1 parent 862a7b3 commit f34e15d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 0062-unique-paths/0062-unique-paths.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ func uniquePaths(m int, n int) int {
dp := make([][]int, m)
for i := range dp {
dp[i] = make([]int, n)
}
}

for i := range dp {
for j := range dp[i] {
Expand Down

0 comments on commit f34e15d

Please sign in to comment.