1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-27 18:50:26 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/验证回文串 [valid-palindrome].html

42 lines
1.3 KiB
HTML
Raw Normal View History

2023-12-09 18:42:21 +08:00
<p>如果在将所有大写字符转换为小写字符、并移除所有非字母数字字符之后,短语正着读和反着读都一样。则可以认为该短语是一个 <strong>回文串</strong></p>
2022-03-27 20:56:26 +08:00
2023-12-09 18:42:21 +08:00
<p>字母和数字都属于字母数字字符。</p>
2022-03-27 20:56:26 +08:00
2023-12-09 18:42:21 +08:00
<p>给你一个字符串 <code>s</code>,如果它是 <strong>回文串</strong> ,返回 <code>true</code><em> </em>;否则,返回<em> </em><code>false</code><em> </em></p>
2022-03-27 20:56:26 +08:00
2023-12-09 18:42:21 +08:00
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong> s = "A man, a plan, a canal: Panama"
<strong>输出:</strong>true
<strong>解释:</strong>"amanaplanacanalpanama" 是回文串。
</pre>
<p><strong>示例 2</strong></p>
2022-03-27 20:56:26 +08:00
<pre>
2023-12-09 18:42:21 +08:00
<strong>输入:</strong>s = "race a car"
<strong>输出:</strong>false
<strong>解释:</strong>"raceacar" 不是回文串。
2022-03-27 20:56:26 +08:00
</pre>
2023-12-09 18:42:21 +08:00
<p><strong>示例 3</strong></p>
2022-03-27 20:56:26 +08:00
<pre>
2023-12-09 18:42:21 +08:00
<strong>输入:</strong>s = " "
<strong>输出:</strong>true
<strong>解释:</strong>在移除非字母数字字符之后s 是一个空字符串 "" 。
由于空字符串正着反着读都一样,所以是回文串。
2022-03-27 20:56:26 +08:00
</pre>
2023-12-09 18:42:21 +08:00
<p>&nbsp;</p>
2022-03-27 20:56:26 +08:00
<p><strong>提示:</strong></p>
<ul>
2023-12-09 18:42:21 +08:00
<li><code>1 &lt;= s.length &lt;= 2 * 10<sup>5</sup></code></li>
<li><code>s</code> 仅由可打印的 ASCII 字符组成</li>
2022-03-27 20:56:26 +08:00
</ul>