1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-11 18:31:41 +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

@@ -15,7 +15,7 @@
<pre>
<strong>输入:</strong>folder = ["/a","/a/b","/c/d","/c/d/e","/c/f"]
<strong>输出:</strong>["/a","/c/d","/c/f"]
<strong>解释:</strong>"/a/b/" 是 "/a" 的子文件夹,而 "/c/d/e" 是 "/c/d" 的子文件夹。
<strong>解释:</strong>"/a/b" 是 "/a" 的子文件夹,而 "/c/d/e" 是 "/c/d" 的子文件夹。
</pre>
<p><strong>示例 2</strong></p>
@@ -23,7 +23,7 @@
<pre>
<strong>输入:</strong>folder = ["/a","/a/b/c","/a/b/d"]
<strong>输出:</strong>["/a"]
<strong>解释:</strong>文件夹 "/a/b/c" 和 "/a/b/d/" 都会被删除,因为它们都是 "/a" 的子文件夹。
<strong>解释:</strong>文件夹 "/a/b/c" 和 "/a/b/d" 都会被删除,因为它们都是 "/a" 的子文件夹。
</pre>
<p><strong>示例 3</strong></p>
@@ -41,5 +41,5 @@
<li><code>2 &lt;= folder[i].length &lt;= 100</code></li>
<li><code>folder[i]</code>&nbsp;只包含小写字母和 <code>'/'</code></li>
<li><code>folder[i]</code>&nbsp;总是以字符 <code>'/'</code>&nbsp;起始</li>
<li>每个文件夹名都是 <strong>唯一</strong></li>
<li><code>folder</code>&nbsp;每个元素都是 <strong>唯一</strong></li>
</ul>