JavaScript
C
C++
Python
Given a string s, return the longest palindromic substring in s.
s
Input: s = "babad" Output: "bab" Explanation: "aba" is also a valid answer.
Input: s = "cbbd" Output: "bb"
1 <= s.length <= 1000
When the function longestPalindromicSubstring is called with the given example inputs, the expected outputs are:
longestPalindromicSubstring
"babad"
"bab"
"aba"
"cbbd"
"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'
Memory: 0
CPU: 0