This website uses cookies to enhance the user experience

Longest Palindromic Substring

Difficulty: 🔥 Hard

Problem Statement

Given a string s, return the longest palindromic substring in s.

Example
Input: s = "babad"
Output: "bab"
Explanation: "aba" is also a valid answer.
Input: s = "cbbd"
Output: "bb"
Constraints
  • 1 <= s.length <= 1000
  • s consist of only digits and English letters (lower-case and/or upper-case).

Expected Challenge Output

When the function longestPalindromicSubstring is called with the given example inputs, the expected outputs are:

  • For the input "babad", the output is "bab" or "aba".
  • For the input "cbbd", the output is "bb".

These outputs represent the longest palindromic substrings in the provided strings.

console.log(longestPalindromicSubstring('babad'));  // Output: 'bab' or 'aba'
console.log(longestPalindromicSubstring('cbbd'));  // Output: 'bb'
function longestPalindromicSubstring(s) {
// YOUR SOLUTION HERE
}

Memory: 0

CPU: 0