I was solving this longest palindromic substring problem on leetcode and I followed the dynamic programming approach by creating one n*n boolean table(which I guess is also the standard solution to this) and successfully solved it but I was just wondering if this problem can be done using the technique that we use in finding out longest common subsequence or to be more precise, just wish to know whether the LCS problem is parent question of this problem as well like in the case of longest palindromic subsequence which can be solved easily through LCS by taking one another string as reverse of original string.
I searched web but didn't find any solution using LCS technique that's why thought of asking it here. If it is possible to solve using lcs technique then please provide the approach or else some good reason for why it can't be solved using LCS.