Closed godkingjay closed 1 year ago
Medium
Given a string s, return the longest palindromic substring in s.
s
Example 1:
Input: s = "babad" Output: "bab" Explanation: "aba" is also a valid answer.
Example 2:
Input: s = "cbbd" Output: "bb"
Constraints:
1 <= s.length <= 1000
https://leetcode.com/problems/longest-palindromic-substring/
can you assign this issue to me
Hi @godkingjay can you please assign this task to me.
Difficulty
Medium
Problem Description
Given a string
s
, return the longest palindromic substring ins
.Example 1:
Example 2:
Constraints:
1 <= s.length <= 1000
s
consist of only digits and English letters.Link
https://leetcode.com/problems/longest-palindromic-substring/