Ejemplo n.º 1
0
 public static void main(String[] args) {
   Solution s = new Solution();
   System.out.println(s.generateParenthesis(5));
 }
Ejemplo n.º 2
0
 public static void main(String[] args) {
   Solution s = new Solution();
   int[] str = {-1, -1, 0, 1, 2, 3};
   System.out.println(s.threeSumClosest(str, 5));
 }