Skip to content

Commit

Permalink
Update 0516.最长回文子序列.md
Browse files Browse the repository at this point in the history
  • Loading branch information
z80160280 committed Jun 9, 2021
1 parent a4b7399 commit 0e25b3c
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion problems/0516.最长回文子序列.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,20 @@ public class Solution {


Python:

```python
class Solution:
def longestPalindromeSubseq(self, s: str) -> int:
dp = [[0] * len(s) for _ in range(len(s))]
for i in range(len(s)):
dp[i][i] = 1
for i in range(len(s)-1, -1, -1):
for j in range(i+1, len(s)):
if s[i] == s[j]:
dp[i][j] = dp[i+1][j-1] + 2
else:
dp[i][j] = max(dp[i+1][j], dp[i][j-1])
return dp[0][-1]
```

Go:
```Go
Expand Down

0 comments on commit 0e25b3c

Please sign in to comment.