Skip to content

Commit a6ac134

Browse files
左程云左程云
authored andcommitted
modify code on class
1 parent 5a3f30e commit a6ac134

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/topinterviewquestions/Problem_0022_GenerateParentheses.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ public static List<String> generateParenthesis(int n) {
1717
// 0 1 2 3 4 5
1818
// path[0...index-1]决定已经做完了
1919
// index位置上,( )
20-
// leftNum
2120
public static void process(char[] path, int index, int leftMinusRight, int leftRest, List<String> ans) {
2221
if (index == path.length) {
2322
ans.add(String.valueOf(path));

0 commit comments

Comments
 (0)