We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 855ada5 commit 69658ebCopy full SHA for 69658eb
src/main/java/com/fishercoder/solutions/_823.java
@@ -9,7 +9,7 @@ public static class Solution1 {
9
/**
10
* credit: https://leetcode.com/problems/binary-trees-with-factors/discuss/126277/Concise-Java-solution-using-HashMap-with-detailed-explanation.-Easily-understand!!!
11
*/
12
- long MOD = 1000000007l;
+ private static final long MOD = 1000000007L;
13
14
public int numFactoredBinaryTrees(int[] arr) {
15
Arrays.sort(arr);
0 commit comments