Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 290 Bytes

File metadata and controls

21 lines (13 loc) · 290 Bytes

5. Longest Palindromic Substring

Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000.

Example:

Input: "babad"

Output: "bab"

Note: "aba" is also a valid answer.

Example:

Input: "cbbd"

Output: "bb"