Merge pull request #369 from z80160280/z80160280-patch-14

Update 0392.判断子序列.md
This commit is contained in:
程序员Carl
2021-06-11 15:28:17 +08:00
committed by GitHub

View File

@ -144,7 +144,20 @@ Java
Python
```python
class Solution:
def isSubsequence(self, s: str, t: str) -> bool:
dp = [[0] * (len(t)+1) for _ in range(len(s)+1)]
for i in range(1, len(s)+1):
for j in range(1, len(t)+1):
if s[i-1] == t[j-1]:
dp[i][j] = dp[i-1][j-1] + 1
else:
dp[i][j] = dp[i][j-1]
if dp[-1][-1] == len(s):
return True
return False
```
Go