We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd5a9e3 commit 2c1b7b3Copy full SHA for 2c1b7b3
022. Generate Parentheses.java
@@ -1,3 +1,4 @@
1
+// https://leetcode.com/problems/generate-parentheses/?tab=Description
2
public class Solution {
3
public void helper(List<String> result, int n, String sofar, int left, int right) {
4
if (sofar.length() == n*2) {
0 commit comments