Medium
,String
,DP
516. Longest Palindromic Subsequence
Given a string s
, find the longest palindromic subsequence's length in s
.
A subsequence is a sequence that can be derived from another sequence by deleting some or no elements without changing the order of the remaining elements.
Example 1:
Example 2:
Constraints:
s.length
<= 1000s
consists only of lowercase English letters.MarsgoatApr 15, 2023