InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is not a palindromic subsequence of the string “ababcdabba”?(a) abcba(b) abba(c) abbbba(d) adbaThe question was asked during an interview for a job.I need to ask this question from Longest Palindromic Subsequence topic in division Dynamic Programming of Data Structures & Algorithms II |
|
Answer» CORRECT OPTION is (d) adba The best I can explain: ‘adba’ is not a palindromic SEQUENCE. |
|