Skip to content

Commit 8744ecd

Browse files
authored
Update Solution.java
1 parent bf7e959 commit 8744ecd

File tree

1 file changed

+0
-1
lines changed
  • src/main/java/g1001_1100/s1030_matrix_cells_in_distance_order

1 file changed

+0
-1
lines changed

src/main/java/g1001_1100/s1030_matrix_cells_in_distance_order/Solution.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ public int[][] allCellsDistOrder(int rows, int cols, int rCenter, int cCenter) {
1919
.add(new int[] {i, j});
2020
}
2121
}
22-
2322
int[][] res = new int[rows * cols][];
2423
int i = 0;
2524
for (List<int[]> list : map.values()) {

0 commit comments

Comments
 (0)