1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-12-19 18:34:59 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2025-09-29 14:46:20 +08:00
parent 13f2098086
commit a2236fb639
14 changed files with 7031 additions and 7018 deletions

View File

@@ -1,4 +1,6 @@
<p>给你一个只包含 <code>'('</code>&nbsp;<code>')'</code>&nbsp;的字符串,找出最长有效(格式正确且连续)括号<span data-keyword="substring">子串</span>的长度。</p>
<p>给你一个只包含 <code>'('</code> <code>')'</code> 的字符串,找出最长有效(格式正确且连续)括号 <span data-keyword="substring">子串</span> 的长度。</p>
<p>左右括号匹配,即每个左括号都有对应的右括号将其闭合的字符串是格式正确的,比如&nbsp;<code>"(()())"</code></p>
<p>&nbsp;</p>