1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-10-24 22:38:57 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

存量题库数据更新

This commit is contained in:
2023-12-09 18:42:21 +08:00
parent a788808cd7
commit c198538f10
10843 changed files with 288489 additions and 248355 deletions

View File

@@ -1,6 +1,6 @@
<p>给你一个 <strong>不含重复 </strong>单词的字符串数组 <code>words</code> ,请你找出并返回 <code>words</code> 中的所有 <strong>连接词</strong></p>
<p><strong>连接词</strong> 定义为:一个完全由给定数组中的至少两个较短单词组成的字符串。</p>
<p><strong>连接词</strong> 定义为:一个完全由给定数组中的至少两个较短单词(不一定是不同的两个单词)组成的字符串。</p>
<p>&nbsp;</p>
@@ -26,7 +26,8 @@
<ul>
<li><code>1 &lt;= words.length &lt;= 10<sup>4</sup></code></li>
<li><code>0 &lt;= words[i].length &lt;= 1000</code></li>
<li><code>words[i]</code> 仅由小写字母组成</li>
<li><code>0 &lt;= sum(words[i].length) &lt;= 10<sup>5</sup></code></li>
<li><code>1 &lt;= words[i].length &lt;= 30</code></li>
<li><code>words[i]</code>&nbsp;仅由小写英文字母组成&nbsp;</li>
<li><code>words</code>&nbsp;中的所有字符串都是 <strong>唯一</strong> 的。</li>
<li><code>1 &lt;= sum(words[i].length) &lt;= 10<sup>5</sup></code></li>
</ul>