LeetCode/com/zerroi/leetcode/ThreeThree/Second.java

17 lines
270 B
Java
Raw Normal View History

2024-03-03 20:08:28 +08:00
package com.zerroi.leetcode.ThreeThree;
import java.util.ArrayList;
import java.util.List;
public class Second {
}
class SolutionSecond {
public List<String> generateParenthesis(int n) {
List<String> res = new ArrayList<>();
return res;
}
}