Skip to content

Commit c70ecd3

Browse files
committed
Fixed format
1 parent 60634fc commit c70ecd3

File tree

1 file changed

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

1 file changed

+2
-1
lines changed

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ public List<Integer> goodSubsetofBinaryMatrix(int[][] grid) {
3535
}
3636

3737
private int get(int[] nums) {
38-
int n = nums.length, rs = 0;
38+
int n = nums.length;
39+
int rs = 0;
3940
for (int i = 0; i < n; ++i) {
4041
if (nums[i] == 1) {
4142
rs = (rs | (1 << i));

0 commit comments

Comments
 (0)