We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67a6910 commit 13e0b7bCopy full SHA for 13e0b7b
src/main/java/g1101_1200/s1191_k_concatenation_maximum_sum/Solution.java
@@ -3,7 +3,7 @@
3
// #Medium #Array #Dynamic_Programming #2022_03_03_Time_6_ms_(73.85%)_Space_59.8_MB_(30.38%)
4
5
public class Solution {
6
- private final long MOD = 1000000007;
+ private static final long MOD = 1000000007;
7
8
public int kConcatenationMaxSum(int[] arr, int k) {
9
// int kadane = Kadane(arr);
0 commit comments