Given the string a, find the longest palindromic sub-string b.
So when
a = 'xkayakyy';
you should return
b = 'kayak';
Solution Stats
Problem Comments
3 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers1663
Suggested Problems
-
Calculate the Levenshtein distance between two strings
1507 Solvers
-
Determine if a Given Number is a Triangle Number
398 Solvers
-
Given a window, how many subsets of a vector sum positive
871 Solvers
-
Relative ratio of "1" in binary number
1596 Solvers
-
There are 10 types of people in the world
1285 Solvers
More from this Author96
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
This needs a richer test suite, as the leading solution at the time of this comment is just a lookup table.
You should add testcases where the palindrome is in the 2nd half of the word. Cause then my solution wouldnt work and i had to come up with something else.^^
Useful!