首页 > 其他 > 详细

Leetcode 22. Generate Parentheses

时间:2019-08-04 19:23:59      阅读:76      评论:0      收藏:0      [点我收藏+]

https://leetcode.com/problems/generate-parentheses/

Medium

Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses.

For example, given n = 3, a solution set is:

[
  "((()))",
  "(()())",
  "(())()",
  "()(())",
  "()()()"
]

 

技术分享图片
 1 class Solution:
 2     def generateParenthesis(self, n: int) -> List[str]:
 3         if n == 0:
 4             return None
 5         
 6         result = []
 7         
 8         def helper(s = ‘‘, left = 0, right = 0):
 9             if len(s) == 2 * n:
10                 result.append(s)
11                 return
12             
13             if left < n:
14                 helper(s + (, left + 1, right)
15             
16             if right < left:
17                 helper(s + ), left, right + 1)
18         
19         helper()
20         return result        
View Python Code

 

Leetcode 22. Generate Parentheses

原文:https://www.cnblogs.com/pegasus923/p/11299186.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!