<p>Given a string <code>s</code>, return <em>the longest palindromic substring</em> in <code>s</code>.</p> <p> </p> <p><strong>Example 1:</strong></p> <pre> <strong>Input:</strong> s = "babad" <strong>Output:</strong> "bab" <strong>Explanation:</strong> "aba" is also a valid answer. </pre> <p><strong>Example 2:</strong></p> <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>