-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
16 lines (14 loc) · 429 Bytes
/
Copy pathMain.java
File metadata and controls
16 lines (14 loc) · 429 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package leetcode._56_;
/**
* Created by zhangbo54 on 2019-03-04.
*/
public class Main {
public static void main(String[] args) {
Solution solution = new Solution();
int[][] intervals = {{1, 3}, {8, 10}, {15, 18}, {2, 6}};
// int[][] merge = solution.merge(intervals);
// System.out.println(merge);
int[][] intervals2 = {{1, 4}, {1, 4}};
solution.merge(intervals2);
}
}