-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathgenerate_parentheses.py
50 lines (45 loc) · 2.44 KB
/
generate_parentheses.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# coding: utf-8
# ## ##
# ##### # ####
# ######### ## #######
# ### ############ ##
# #### # ####### #########
# ########### ######### # ########### ##
# ############# ### #### ## #### ######## ##
# ## ## ## ## ### ######### ######### ### ## # ### ## #
# ## ## ## ### ######## ########## #### ## ### #### ### ##### ####
# ## #### ## ## ######### ########## ######## ##### #### #### ##### #####
# ###### #### ## ## ### ## ### ############ ## ### ## ## ## ### ### ##### ### ##
# #### ##### ## ### ### ###### ############ ## ## ##### ### ## ### ### #####
# ## ## ### ### ### ### ######### ############## ### ## #### ## ### ##### #### ####
# ## ### ## ## ## ### ##### ############## ####### ##### ##### ##### ### ######
# ## ### ## ####### ###### ############### #### ## ## # ###
# ## ###### ####### ##### ################# ###
# ## ### ## ## ### ################# ##
# ## ## ################### ##
# ## ### ######################
# ## # ## #
# ##
# author: RaPoSpectre
# time: 2016-11-28
class Solution(object):
def generateParenthesis(self, n):
"""
:type n: int
:rtype: List[str]
"""
lp = rp = n
res = []
self.backtrack(res, '', n, n)
return res
def backtrack(self, res, sub, l, r):
if l == 0 and r == 0:
res.append(sub)
return 0
if l > r:
return 0
if l > 0:
self.backtrack(res, sub + "(", l-1, r)
if r > 0:
self.backtrack(res, sub + ")", l, r-1)
# print Solution().generateParenthesis(3)