2022-03-27 18:35:17 +08:00
< p > Given a string < code > s< / code > , find < em > the longest palindromic < strong > subsequence< / strong > ' s length in< / em > < code > s< / code > .< / p >
< p > A < strong > subsequence< / strong > is a sequence that can be derived from another sequence by deleting some or no elements without changing the order of the remaining elements.< / p >
< p > < / p >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 1:< / strong > < / p >
2022-03-27 18:35:17 +08:00
< pre >
< strong > Input:< / strong > s = " bbbab"
< strong > Output:< / strong > 4
< strong > Explanation:< / strong > One possible longest palindromic subsequence is " bbbb" .
< / pre >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 2:< / strong > < / p >
2022-03-27 18:35:17 +08:00
< pre >
< strong > Input:< / strong > s = " cbbd"
< strong > Output:< / strong > 2
< strong > Explanation:< / strong > One possible longest palindromic subsequence is " bb" .
< / pre >
< p > < / p >
< p > < strong > Constraints:< / strong > < / p >
< ul >
< li > < code > 1 < = s.length < = 1000< / code > < / li >
< li > < code > s< / code > consists only of lowercase English letters.< / li >
< / ul >