3473. Sum of K Subarrays With Length at Least M
You are given an integer array
nums
and two integers,k
andm
.Return the maximum sum of
k
non-overlapping subarrays ofnums
, where each subarray has a length of at leastm
.
c++
1 | class Solution { |