mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
38 lines
1.3 KiB
HTML
38 lines
1.3 KiB
HTML
<p>A phrase is a <strong>palindrome</strong> if, after converting all uppercase letters into lowercase letters and removing all non-alphanumeric characters, it reads the same forward and backward. Alphanumeric characters include letters and numbers.</p>
|
|
|
|
<p>Given a string <code>s</code>, return <code>true</code><em> if it is a <strong>palindrome</strong>, or </em><code>false</code><em> otherwise</em>.</p>
|
|
|
|
<p> </p>
|
|
<p><strong>Example 1:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> s = "A man, a plan, a canal: Panama"
|
|
<strong>Output:</strong> true
|
|
<strong>Explanation:</strong> "amanaplanacanalpanama" is a palindrome.
|
|
</pre>
|
|
|
|
<p><strong>Example 2:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> s = "race a car"
|
|
<strong>Output:</strong> false
|
|
<strong>Explanation:</strong> "raceacar" is not a palindrome.
|
|
</pre>
|
|
|
|
<p><strong>Example 3:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> s = " "
|
|
<strong>Output:</strong> true
|
|
<strong>Explanation:</strong> s is an empty string "" after removing non-alphanumeric characters.
|
|
Since an empty string reads the same forward and backward, it is a palindrome.
|
|
</pre>
|
|
|
|
<p> </p>
|
|
<p><strong>Constraints:</strong></p>
|
|
|
|
<ul>
|
|
<li><code>1 <= s.length <= 2 * 10<sup>5</sup></code></li>
|
|
<li><code>s</code> consists only of printable ASCII characters.</li>
|
|
</ul>
|