1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-10-12 17:05:15 +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,9 +2,10 @@
<p><strong>示例:</strong></p>
<pre><strong>输入:</strong>
big = &quot;mississippi&quot;
smalls = [&quot;is&quot;,&quot;ppi&quot;,&quot;hi&quot;,&quot;sis&quot;,&quot;i&quot;,&quot;ssippi&quot;]
<pre>
<strong>输入:</strong>
big = "mississippi"
smalls = ["is","ppi","hi","sis","i","ssippi"]
<strong>输出:</strong> [[1,4],[8],[],[3],[1,4,7,10],[5]]
</pre>
@@ -13,7 +14,7 @@ smalls = [&quot;is&quot;,&quot;ppi&quot;,&quot;hi&quot;,&quot;sis&quot;,&quot;i&
<ul>
<li><code>0 &lt;= len(big) &lt;= 1000</code></li>
<li><code>0 &lt;= len(smalls[i]) &lt;= 1000</code></li>
<li><code>smalls</code>的总字符数不会超过 100000</li>
<li><code>smalls</code>的总字符数不会超过 <code>10<sup>6</sup></code></li>
<li>你可以认为<code>smalls</code>中没有重复字符串。</li>
<li>所有出现的字符均为英文小写字母。</li>
</ul>