2023-12-09 18:42:21 +08:00
< p > Given a string < code > s< / code > , return < em > the longest< / em > < span data-keyword = "palindromic-string" > < em > palindromic< / em > < / span > < span data-keyword = "substring-nonempty" > < em > substring< / em > < / span > in < code > s< / code > .< / p >
2022-03-27 18:43:57 +08:00
< p > < / p >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 1:< / strong > < / p >
2022-03-27 18:43:57 +08:00
< pre >
< strong > Input:< / strong > s = " babad"
< strong > Output:< / strong > " bab"
< strong > Explanation:< / strong > " aba" is also a valid answer.
< / pre >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 2:< / strong > < / p >
2022-03-27 18:43:57 +08:00
< pre >
< strong > Input:< / strong > s = " cbbd"
< strong > Output:< / strong > " bb"
< / pre >
< p > < / p >
< p > < strong > Constraints:< / strong > < / p >
< ul >
< li > < code > 1 < = s.length < = 1000< / code > < / li >
< li > < code > s< / code > consist of only digits and English letters.< / li >
< / ul >