MCPcopy Index your code
hub / github.com/neetcode-gh/leetcode / main

Method main

java/0022-generate-parentheses.java:10–13  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

8public class Solution {
9
10 public static void main(String[] args) {
11 Solution sol = new Solution();
12 sol.generateParenthesis(3);
13 }
14
15 Stack<Character> stack = new Stack<>();
16 List<String> res = new ArrayList<>();

Callers

nothing calls this directly

Calls 1

generateParenthesisMethod · 0.95

Tested by

no test coverage detected