1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-10-19 03:56:46 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

更新国内版力扣题目描述变更

This commit is contained in:
2022-05-02 23:42:43 +08:00
parent 74598d1cf8
commit 7ea03594b3
198 changed files with 11378 additions and 11118 deletions

View File

@@ -1,21 +1,21 @@
<p>Write a method to sort an array of strings so that all the anagrams are in the same group.</p>
<p><b>Note:&nbsp;</b>This problem is slightly different from the original one the book.</p>
<p><strong>Example:</strong></p>
<pre>
<strong>Input:</strong> <code>[&quot;eat&quot;, &quot;tea&quot;, &quot;tan&quot;, &quot;ate&quot;, &quot;nat&quot;, &quot;bat&quot;]</code>,
<strong>Output:</strong>
[
[&quot;ate&quot;,&quot;eat&quot;,&quot;tea&quot;],
[&quot;nat&quot;,&quot;tan&quot;],
[&quot;bat&quot;]
]</pre>
<p><strong>Notes: </strong></p>
<ul>
<li>All inputs will be in lowercase.</li>
<li>The order of your output does not&nbsp;matter.</li>
</ul>
<p>Write a method to sort an array of strings so that all the anagrams are in the same group.</p>
<p><b>Note:&nbsp;</b>This problem is slightly different from the original one the book.</p>
<p><strong>Example:</strong></p>
<pre>
<strong>Input:</strong> <code>[&quot;eat&quot;, &quot;tea&quot;, &quot;tan&quot;, &quot;ate&quot;, &quot;nat&quot;, &quot;bat&quot;]</code>,
<strong>Output:</strong>
[
[&quot;ate&quot;,&quot;eat&quot;,&quot;tea&quot;],