1 Star 0 Fork 0

ZENGWatermelon/LeetCode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
22.括号生成.py 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
sunzhaoc 提交于 2020-12-08 19:19 . master
'''
Description:
Version: 1.0
Author: Vicro
Date: 2020-12-07 15:52:38
LastEditTime: 2020-12-07 17:42:14
FilePath: \Leetcode\22.括号生成.py
'''
#
# @lc app=leetcode.cn id=22 lang=python3
#
# [22] 括号生成
#
# @lc code=start
"""
RESULT: Accept
TIME: 40ms BEAT 77.19% O(n) = n^2
MEMORY: 13.8MB BEAT 12.96% O(n) = n^2
Description:
"""
class Solution:
def generateParenthesis(self, n):
if n == 0: return []
ans = [[["(", n - 1, n]]]
for i in range(n * 2 - 1):
ans.append([])
for j in ans[0]:
if j[1] < j[2]:
if j[1] > 0:
ans[-1].append([j[0] + "(", j[1] - 1, j[2]])
if j[2] > 0:
ans[-1].append([j[0] + ")", j[1], j[2] - 1])
elif j[1] == j[2] and j[1] != 0:
ans[-1].append([j[0] + "(", j[1] - 1, j[2]])
del(ans[0])
return [i[0] for i in ans[-1]]
sol = Solution()
A = sol.generateParenthesis(3)
print(A)
# @lc code=end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/watermelonTT/LeetCode.git
git@gitee.com:watermelonTT/LeetCode.git
watermelonTT
LeetCode
LeetCode
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385