Skip to content

Commit 53e4579

Browse files
aQuaaQua
aQua
authored and
aQua
committed
115 ut fail
1 parent b4c0ede commit 53e4579

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Algorithms/0115.distinct-subsequences/distinct-subsequences.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ func numDistinct(s string, t string) int {
2727
} else {
2828
dp[i][j] = dp[i-1][j]
2929
}
30-
31-
}
3230

31+
}
32+
}
3333
return dp[m][n]
3434
}

0 commit comments

Comments
 (0)