toastbin / DailyProblems

LeetCode
10 stars 2 forks source link

48.括号生成 #49

Open toastbin opened 5 years ago

toastbin commented 5 years ago

给出 n 代表生成括号的对数,请你写出一个函数,使其能够生成所有可能的并且有效的括号组合。

例如,给出 n = 3,生成结果为:

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