Class Solution
-
- All Implemented Interfaces:
public final class Solution862 - Shortest Subarray with Sum at Least K.
Hard
Given an integer array
numsand an integerk, return the length of the shortest non-empty subarray ofnumswith a sum of at leastk. If there is no such subarray , return-1.A subarray is a contiguous part of an array.
Example 1:
Input: nums = 1, k = 1
Output: 1
Example 2:
Input: nums = 1,2, k = 4
Output: -1
Example 3:
Input: nums = 2,-1,2, k = 3
Output: 3
Constraints:
<code>1 <= nums.length <= 10<sup>5</sup></code>
<code>-10<sup>5</sup><= numsi<= 10<sup>5</sup></code>
<code>1 <= k <= 10<sup>9</sup></code>
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
Modifier and Type Method Description final IntegershortestSubarray(IntArray nums, Integer k)-
-
Method Detail
-
shortestSubarray
final Integer shortestSubarray(IntArray nums, Integer k)
-
-
-
-