Skip to content

Commit fcf3121

Browse files
committed
Fixed sonar
1 parent f03d640 commit fcf3121

File tree

1 file changed

+0
-1
lines changed
  • src/main/java/g3201_3300/s3212_count_submatrices_with_equal_frequency_of_x_and_y

1 file changed

+0
-1
lines changed

src/main/java/g3201_3300/s3212_count_submatrices_with_equal_frequency_of_x_and_y/Solution.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
public class Solution {
66
public int numberOfSubmatrices(char[][] grid) {
7-
int m = grid.length;
87
int n = grid[0].length;
98
int ans = 0;
109
int[][] row = new int[n][2];

0 commit comments

Comments
 (0)