Skip to content

Commit bc3f9fd

Browse files
fix build
1 parent c038b02 commit bc3f9fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/fishercoder/solutions/_1354.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public static class Solution1 {
4646
*/
4747
public boolean isPossible(int[] target) {
4848
PriorityQueue<Long> pq = new PriorityQueue<>(Collections.reverseOrder());
49-
long sum = 0l;
49+
long sum = 0L;
5050
for (int v : target) {
5151
sum += v;
5252
pq.offer((long) v);

0 commit comments

Comments
 (0)