Skip to content

Commit 2c1b7b3

Browse files
authored
Update 022. Generate Parentheses.java
1 parent fd5a9e3 commit 2c1b7b3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

022. Generate Parentheses.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// https://leetcode.com/problems/generate-parentheses/?tab=Description
12
public class Solution {
23
public void helper(List<String> result, int n, String sofar, int left, int right) {
34
if (sofar.length() == n*2) {

0 commit comments

Comments
 (0)