Skip to content

Commit

Permalink
add day 21
Browse files Browse the repository at this point in the history
  • Loading branch information
ravaan authored May 21, 2020
1 parent 4a2d803 commit 213de89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 21-CountSquareSubmatriceswithAllOnes.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public int countSquares(int[][] m) {
ans += m[i][j];
}
}
for (int[] a : m) System.out.println(Arrays.toString(a));

return ans;
}

Expand Down

0 comments on commit 213de89

Please sign in to comment.