Longest Palindromic Sequence - njuturi/nalini-java-training GitHub Wiki

#Longest Palindromic Sequence

This is nothing but find out the maximum palindromic string length of a given string.


Example:

    String s1 = "LPSSAPAL"

possible longest palindromic string is : LPSSPL

length :6

Reference

Java-Implementation