mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-12 10:51:42 +08:00
批量更新数据
This commit is contained in:
@@ -4,32 +4,32 @@
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>示例 1:</strong></p>
|
||||
<p><strong>示例 1:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong> s = "anagram", t = "nagaram"
|
||||
<strong>输出:</strong> true
|
||||
<strong>输入:</strong>s = "anagram", t = "nagaram"
|
||||
<strong>输出:</strong>true
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 2:</strong></p>
|
||||
<p><strong>示例 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong> s = "rat", t = "car"
|
||||
<strong>输出: </strong>false</pre>
|
||||
<strong>输入:</strong>s = "rat", t = "car"
|
||||
<strong>输出:</strong>false</pre>
|
||||
|
||||
<p><strong>示例 3:</strong></p>
|
||||
<p><strong>示例 3:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong> s = "a", t = "a"
|
||||
<strong>输出: </strong>false</pre>
|
||||
<strong>输入:</strong>s = "a", t = "a"
|
||||
<strong>输出:</strong>false</pre>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>提示:</strong></p>
|
||||
<p><strong>提示:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li><code>1 <= s.length, t.length <= 5 * 10<sup>4</sup></code></li>
|
||||
<li><code>s</code> and <code>t</code> 仅包含小写字母</li>
|
||||
<li><code>s</code> 和 <code>t</code> 仅包含小写字母</li>
|
||||
</ul>
|
||||
|
||||
<p> </p>
|
||||
|
Reference in New Issue
Block a user