1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-13 03:11:42 +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,10 +1,10 @@
<p>给出一个字符串 <code>s</code>(仅含有小写英文字母和括号)。</p>
<p>给出一个字符串&nbsp;<code>s</code>(仅含有小写英文字母和括号)。</p>
<p>请你按照从括号内到外的顺序,逐层反转每对匹配括号中的字符串,并返回最终的结果。</p>
<p>注意,您的结果中 <strong>不应</strong> 包含任何括号。</p>
<p> </p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
@@ -34,12 +34,12 @@
<strong>输出:</strong>"apmnolkjihgfedcbq"
</pre>
<p> </p>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>0 <= s.length <= 2000</code></li>
<li><code>1 &lt;= s.length &lt;= 2000</code></li>
<li><code>s</code> 中只有小写英文字母和括号</li>
<li>题目测试用例确保所有括号都是成对出现的</li>
</ul>