Class Solution

  • All Implemented Interfaces:

    
    public final class Solution
    
                        

    516 - Longest Palindromic Subsequence.

    Medium

    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:

    Input: s = "bbbab"

    Output: 4

    Explanation: One possible longest palindromic subsequence is "bbbb".

    Example 2:

    Input: s = "cbbd"

    Output: 2

    Explanation: One possible longest palindromic subsequence is "bb".

    Constraints:

    • 1 <= s.length <= 1000

    • s consists only of lowercase English letters.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
      Solution()
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final Integer longestPalindromeSubseq(String s)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait