godkingjay / LeetCode

LeetCode Solutions
MIT License
32 stars 67 forks source link

[PROBLEM] 5. Longest Palindromic Substring #182

Closed godkingjay closed 11 months ago

godkingjay commented 11 months ago

Difficulty

Medium

Problem Description

Given a string s, return the longest palindromic substring in 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
  • s consist of only digits and English letters.

Link

https://leetcode.com/problems/longest-palindromic-substring/

chiku011 commented 11 months ago

can you assign this issue to me

ankitkumar0622 commented 11 months ago

Hi @godkingjay can you please assign this task to me.