Skip to content

Commit 8202657

Browse files
committed
Fixed sonar
1 parent 85b6f0e commit 8202657

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/g3601_3700/s3676_count_bowl_subarrays/Solution.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ public long bowlSubarrays(int[] nums) {
2020
pre = nums[i];
2121
}
2222
}
23-
return res + 1;
23+
return res + 1L;
2424
}
2525
}

0 commit comments

Comments
 (0)