1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-10 18:48:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/括号 [bracket-lcci].html
2022-03-29 12:43:11 +08:00

16 lines
297 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>括号。设计一种算法打印n对括号的所有合法的例如开闭一一对应组合。</p>
<p>说明:解集不能包含重复的子集。</p>
<p>例如给出 n = 3生成结果为</p>
<pre>
[
"((()))",
"(()())",
"(())()",
"()(())",
"()()()"
]
</pre>