Update problems/0063.不同路径II.md

This commit is contained in:
fw_qaq
2023-04-13 18:06:59 +08:00
committed by GitHub
parent 872402e5a4
commit ced650c7bb

View File

@ -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];
}