Skip to content

Commit 2801968

Browse files
use uppercase L for Long
1 parent efaafae commit 2801968

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/main/java/com/fishercoder/solutions/_3185.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ public class _3185 {
44
public static class Solution1 {
55
public long countCompleteDayPairs(int[] hours) {
66
int[] remainderCounts = new int[24];
7-
long pairs = 0l;
7+
long pairs = 0L;
88
for (int hour : hours) {
99
int remainder = hour % 24;
1010
int complement = (24 - remainder) % 24;

0 commit comments

Comments
 (0)