Skip to content

Commit 69658eb

Browse files
fix build
1 parent 855ada5 commit 69658eb

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public static class Solution1 {
99
/**
1010
* credit: https://leetcode.com/problems/binary-trees-with-factors/discuss/126277/Concise-Java-solution-using-HashMap-with-detailed-explanation.-Easily-understand!!!
1111
*/
12-
long MOD = 1000000007l;
12+
private static final long MOD = 1000000007L;
1313

1414
public int numFactoredBinaryTrees(int[] arr) {
1515
Arrays.sort(arr);

0 commit comments

Comments
 (0)