Back to course home
0% completed
Longest Palindromic Substring (medium)
Problem Statement
Given a string s
, return the longest palindromic substring
in s.
A string is called palindromic
if it reads same
from forward
as backward
.
A substring
is a contiguous sequence
of characters in the string.
Examples
-
Example 1:
- Input: s =
"racecar"
- Expected Output:
"racecar"
- Justification: The entire string is a palindrome and is the longest substring.
- Input: s =
-
Example 2:
- Input: s =
"abccd"
- Expected Output:
"cc"
- Justification: The longest palindromic substring is
"cc"
in the stringabccd
- Input: s =
.....
.....
.....
Like the course? Get enrolled and start learning!
Table of Contents
Contents are not accessible
Contents are not accessible
Contents are not accessible
Contents are not accessible
Contents are not accessible