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
Example :
input: "bacdab"
output: "bacab badab"
Example :
input: bcdcdb
output: bcdcbbdcdb
Input Format
string
Constraints
length of string s
Output Format
sorted array of strings
Sample Input
bacdab
Sample Output
bacab badab
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
