(String[] args)
| 8 | public 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<>(); |
nothing calls this directly
no test coverage detected