Skip to content

Commit f5ac476

Browse files
committed
Runtime: 87 ms (Top 13.18%) | Memory: 134 MB (Top 44.96%)
1 parent a5022a4 commit f5ac476

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/M/Maximum Sum Obtained of Any Permutation/Maximum Sum Obtained of Any Permutation.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 87 ms (Top 13.18%) | Memory: 134 MB (Top 44.96%)
12
class Solution {
23
public int maxSumRangeQuery(int[] nums, int[][] requests) {
34
int n = nums.length;
@@ -18,4 +19,4 @@ public int maxSumRangeQuery(int[] nums, int[][] requests) {
1819
}
1920
return (int)res%1000000007;
2021
}
21-
}
22+
}

0 commit comments

Comments
 (0)