mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-05 15:31:43 +08:00
存量题库数据更新
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
<p>Given an array of strings <code>words</code> (<strong>without duplicates</strong>), return <em>all the <strong>concatenated words</strong> in the given list of</em> <code>words</code>.</p>
|
||||
|
||||
<p>A <strong>concatenated word</strong> is defined as a string that is comprised entirely of at least two shorter words in the given array.</p>
|
||||
<p>A <strong>concatenated word</strong> is defined as a string that is comprised entirely of at least two shorter words (not necessarily distinct) in the given array.</p>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Example 1:</strong></p>
|
||||
<p><strong class="example">Example 1:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> words = ["cat","cats","catsdogcats","dog","dogcatsdog","hippopotamuses","rat","ratcatdogcat"]
|
||||
@@ -12,7 +12,7 @@
|
||||
"dogcatsdog" can be concatenated by "dog", "cats" and "dog";
|
||||
"ratcatdogcat" can be concatenated by "rat", "cat", "dog" and "cat".</pre>
|
||||
|
||||
<p><strong>Example 2:</strong></p>
|
||||
<p><strong class="example">Example 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> words = ["cat","dog","catdog"]
|
||||
@@ -24,7 +24,8 @@
|
||||
|
||||
<ul>
|
||||
<li><code>1 <= words.length <= 10<sup>4</sup></code></li>
|
||||
<li><code>0 <= words[i].length <= 30</code></li>
|
||||
<li><code>1 <= words[i].length <= 30</code></li>
|
||||
<li><code>words[i]</code> consists of only lowercase English letters.</li>
|
||||
<li><code>0 <= sum(words[i].length) <= 10<sup>5</sup></code></li>
|
||||
<li>All the strings of <code>words</code> are <strong>unique</strong>.</li>
|
||||
<li><code>1 <= sum(words[i].length) <= 10<sup>5</sup></code></li>
|
||||
</ul>
|
||||
|
Reference in New Issue
Block a user