(String[] args)
| 30 | } |
| 31 | |
| 32 | public static void main(String[] args) { |
| 33 | ArrayList<String> list = generateParens(3); |
| 34 | for (String s : list) { |
| 35 | System.out.println(s); |
| 36 | } |
| 37 | System.out.println(list.size()); |
| 38 | } |
| 39 | |
| 40 | } |
nothing calls this directly
no test coverage detected