Skip to content

Commit 3618cda

Browse files
committed
Fixed sonar
1 parent c70ecd3 commit 3618cda

File tree

1 file changed

+2
-2
lines changed
  • src/main/java/g2701_2800/s2732_find_a_good_subset_of_the_matrix

1 file changed

+2
-2
lines changed

src/main/java/g2701_2800/s2732_find_a_good_subset_of_the_matrix/Solution.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
import java.util.List;
99

1010
public class Solution {
11-
private static int[] arr = new int[32];
11+
private int[] arr = new int[32];
1212

1313
public List<Integer> goodSubsetofBinaryMatrix(int[][] grid) {
14-
List<Integer> list = new ArrayList<Integer>();
14+
List<Integer> list = new ArrayList<>();
1515
int n = grid.length;
1616
Arrays.fill(arr, -1);
1717
for (int i = 0; i < n; ++i) {

0 commit comments

Comments
 (0)