Skip to content

Commit 455f1b2

Browse files
[LEET-2022] refactor 2022
1 parent 002f88c commit 455f1b2

File tree

1 file changed

+1
-2
lines changed
  • src/main/java/com/fishercoder/solutions/thirdthousand

1 file changed

+1
-2
lines changed

src/main/java/com/fishercoder/solutions/thirdthousand/_2022.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
public class _2022 {
44
public static class Solution1 {
55
public int[][] construct2DArray(int[] original, int m, int n) {
6-
int size = original.length;
7-
if (m * n != size) {
6+
if (m * n != original.length) {
87
return new int[][]{};
98
}
109
int[][] ans = new int[m][n];

0 commit comments

Comments
 (0)