mirror of
https://github.com/youngyangyang04/leetcode-master.git
synced 2025-07-10 04:06:51 +08:00
Update problems/0063.不同路径II.md
This commit is contained in:
@ -510,7 +510,6 @@ impl Solution {
|
||||
for j in 0..rows.len() {
|
||||
if rows[j] == 1 {
|
||||
dp[j] = 0;
|
||||
continue;
|
||||
} else if j != 0 {
|
||||
dp[j] += dp[j - 1];
|
||||
}
|
||||
|
Reference in New Issue
Block a user