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 10% | |
#2 | 97 c. | Top 20% | |
#3 | 100 c. | Top 40% | |
#4 | 122 c. | Top 50% | |
#5 | 124 c. | Top 60% | |
#6 | 149 c. | Top 70% | |
#7 | 189 c. | Top 80% | |
#8 | 717 c. | Top 90% | |
#9 | 1326 c. | Top 100% |