Skip to content

Commit 7f0a792

Browse files
refactor 22
1 parent a80f087 commit 7f0a792

File tree

1 file changed

+0
-15
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-15
lines changed

src/main/java/com/fishercoder/solutions/_22.java

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,6 @@
33
import java.util.ArrayList;
44
import java.util.List;
55

6-
/**
7-
* 22. Generate Parentheses
8-
*
9-
* Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses.
10-
*
11-
* For example, given n = 3, a solution set is:
12-
13-
[
14-
"((()))",
15-
"(()())",
16-
"(())()",
17-
"()(())",
18-
"()()()"
19-
]*/
20-
216
public class _22 {
227
public static class Solution1 {
238
public List<String> generateParenthesis(int n) {

0 commit comments

Comments
 (0)