1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-10-13 01:15:14 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2025-09-29 14:43:44 +08:00
parent 2862a227c4
commit 13f2098086
4409 changed files with 168933 additions and 166256 deletions

View File

@@ -2,20 +2,22 @@
<p>如果有多个面积最大的矩形,输出任意一个均可。一个单词可以重复使用。</p>
<p><strong>示例 1:</strong></p>
<p><strong>示例 1</strong></p>
<pre><strong>输入:</strong> <code>[&quot;this&quot;, &quot;real&quot;, &quot;hard&quot;, &quot;trh&quot;, &quot;hea&quot;, &quot;iar&quot;, &quot;sld&quot;]</code>
<strong>出:
<pre>
<strong>入:</strong><code>["this", "real", "hard", "trh", "hea", "iar", "sld"]</code>
<strong>输出:
</strong><code>[
&nbsp; &quot;this&quot;,
&nbsp; &quot;real&quot;,
&nbsp; &quot;hard&quot;</code>
&nbsp; "this",
&nbsp; "real",
&nbsp; "hard"</code>
]</pre>
<p><strong>示例 2:</strong></p>
<p><strong>示例 2</strong></p>
<pre><strong>输入:</strong> <code>[&quot;aa&quot;]</code>
<strong>出: </strong>[&quot;aa&quot;,&quot;aa&quot;]</pre>
<pre>
<strong>入:</strong><code>["aa"]</code>
<strong>输出:</strong>["aa","aa"]</pre>
<p><strong>说明:</strong></p>