Difficult:Medium
題目
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses.
翻譯
給定 n 對括號,編寫一個函數來生成格式正確的括號的所有組合。
範例
Example 1
1 | Input: n = 3 |
Example 2
1 | Input: n = 1 |
解題思路
Solution
Code 1 :
1 | var generateParenthesis = function (n) { |