1 Star 0 Fork 0

刘埈毅/123

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
回溯算法alg.py 654 Bytes
一键复制 编辑 原始数据 按行查看 历史
刘埈毅 提交于 2024-06-27 06:26 . add 回溯算法alg.py.
class Solution:
def generateParenthesis(self, n: int) -> List[str]:
def backtrack(current, open_count, close_count):
if len(current) == 2 * n:
result.append("".join(current))
return
if open_count < n:
current.append('(')
backtrack(current, open_count + 1, close_count)
current.pop()
if close_count < open_count:
current.append(')')
backtrack(current, open_count, close_count + 1)
current.pop()
result = []
backtrack([],0,0)
return result
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mmmgeiwoyige/123.git
git@gitee.com:mmmgeiwoyige/123.git
mmmgeiwoyige
123
123
master

搜索帮助