LeetCode/Top150Interview/22_Generate_Parenthesis.py
2023-07-19 22:46:58 -07:00

7 lines
110 B
Python

def generateParenthesis(n):
"""
:type n: int
:rtype: List[str]
"""
generateParenthesis(3)