# # # @param n int整型 # @return string字符串一维数组 # class Solution: def generateParenthesis(self , n ): # write code here if n==0: return [] result = [] self.helpler(n, n, '', result) return result def helpler(self, l, r, item, result): ...