A subsequence of a string s is considered a good palindromic
subsequence if:
s.For example, if s = "abcabcabb", then "abba" is considered
a good palindromic subsequence, while "bcb" (not even
length) and "bbbb" (has equal consecutive characters) are not.
Given a string s, return the length of the longest
good palindromic subsequence in s.
Example 1:
Input: s = "bbabab" Output: 4 Explanation: The longest good palindromic subsequence of s is "baab".
Example 2:
Input: s = "dcbccacdb" Output: 4 Explanation: The longest good palindromic subsequence of s is "dccd".
Constraints:
1 <= s.length <= 250s consists of lowercase English letters.