Question: Given a string s , find all longest palindromic subsequences in s . Return the list of subsequences which being sorted in lexicographic order. You

Given a string s, find all longest palindromic subsequences in s. Return the list of subsequences which being sorted in lexicographic order. You may assume that the maximum length of s is 1000.
Example 1:
input: "bacdab"
output: "bacab badab"
Example 2:
input: "bcdcdb"
output: "bcdcb","bdcdb"
Input Format
string
Constraints
length of string s <=1000
Output Format
sorted array of strings
Sample Input 0
bacdab
Sample Output 0
bacab badab

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!