Skip to content

Commit 57e5e37

Browse files
rohan472000cclauss
andauthored
Update dynamic_programming/minimum_size_subarray_sum.py
Co-authored-by: Christian Clauss <cclauss@me.com>
1 parent 5e5f528 commit 57e5e37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dynamic_programming/minimum_size_subarray_sum.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
def minsubarraysum(target: int, numbers: list[int]) -> int:
22
"""
33
Returns the length of the shortest contiguous subarray
4-
in nums whose sum is at least target.
4+
in a list of numbers whose sum is at least target.
55
66
>>> minsubarraysum(7, [2, 3, 1, 2, 4, 3])
77
2

0 commit comments

Comments
 (0)