Longest Palindrome Substring

Find the longest palindromic substring of a given string.

Medium5/15/2024

Problem statement

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.

Problem leaderboard

#
Size
%
Users
#1
97 c.
Top 20%
voytxt
#2
122 c.
Top 40%
Thomasdcrt
#3
124 c.
Top 60%
alexisab
#4
149 c.
Top 80%
maximec-indy
#5
189 c.
Top 100%
ComputerKWasTaken