0516. Longest Palindromic Subsequence
https://leetcode.com/problems/longest-palindromic-subsequence
Description
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:
1 <= s.length <= 1000
s
consists only of lowercase English letters.
ac1: recursion + memorization
If the two ends of a string are the same, then they must be included in the longest palindrome subsequence. Otherwise, both ends cannot be included in the longest palindrome subsequence.
ac2: dp
similar: https://leetcode.com/problems/longest-palindromic-substring
Last updated