We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efaafae commit 2801968Copy full SHA for 2801968
src/main/java/com/fishercoder/solutions/_3185.java
@@ -4,7 +4,7 @@ public class _3185 {
4
public static class Solution1 {
5
public long countCompleteDayPairs(int[] hours) {
6
int[] remainderCounts = new int[24];
7
- long pairs = 0l;
+ long pairs = 0L;
8
for (int hour : hours) {
9
int remainder = hour % 24;
10
int complement = (24 - remainder) % 24;
0 commit comments