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