Last updated
Was this helpful?
Last updated
Was this helpful?
https://leetcode.com/problems/sum-of-subarray-minimums
Given an array of integers arr, find the sum of min(b)
, where b
ranges over every (contiguous) subarray of arr
. Since the answer may be large, return the answer modulo 109 + 7
.
Example 1:
Example 2:
Constraints:
1 <= arr.length <= 3 * 104
1 <= arr[i] <= 3 * 104