1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-12-21 11:13:46 +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

@@ -44,6 +44,15 @@
但无论将 s[0] 变为 '(' 或者 ')' 都无法使 s 变为有效字符串。
</pre>
<p><strong class="example">示例 4</strong></p>
<pre>
<b>输入:</b>s = "(((())(((())", locked = "111111010111"
<b>输出:</b>true
<b>解释:</b>locked 允许我们改变 s[6] 和 s[8]。
我们将 s[6] 和 s[8] 改为 ')' 使 s 变为有效字符串。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>