7 lines
110 B
Python
7 lines
110 B
Python
def generateParenthesis(n):
|
|
"""
|
|
:type n: int
|
|
:rtype: List[str]
|
|
"""
|
|
|
|
generateParenthesis(3) |