Find the longest palindromic substring of a given string.
Given a string of random lowercase characters, find the longest palindromic substring. A palindrome is a word that reads the same backward as forward. For example, racecar
is a palindrome. In the case of multiple palindromes with the same length, return the first one found.
# | Size | % | Users |
---|---|---|---|
#1 | 76 c. | Top 11% | |
#2 | 97 c. | Top 22% | |
#3 | 100 c. | Top 44% | |
#4 | 122 c. | Top 56% | |
#5 | 124 c. | Top 67% | |
#6 | 149 c. | Top 78% | |
#7 | 189 c. | Top 89% | |
#8 | 717 c. | Top 100% |