8000 fix build · ashishkumar468/Leetcode@bcaef7a · GitHub
[go: up one dir, main page]

Skip to content

Commit bcaef7a

Browse files
fix build
1 parent 4c6685f commit bcaef7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public static class Solution1 {
1010
public int maxProduct(TreeNode root) {
1111
Set<Long> set = new HashSet<>();
1212
int total = dfs(root, set);
13-
long result = 0l;
13+
long result = 0L;
1414
for (long sum : set) {
1515
result = Math.max(result, sum * (total - sum));
1616
}

0 commit comments

Comments
 (0)
0