Grokking Oracle Coding Interview
Ask Author
Back to course home

0% completed

Vote For New Content
Longest Palindromic Substring (medium)
On this page

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.
  • Example 2:

    • Input: s = "abccd"
    • Expected Output: "cc"
    • Justification: The longest palindromic substring is "cc" in the string abccd

.....

.....

.....

Like the course? Get enrolled and start learning!

On this page