Skip to content

Commit f00d071

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

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,4 +1,4 @@
1-
def minsubarraysum(target: int, numbers: list[int]) -> int:
1+
def minimum_subarray_sum(target: int, numbers: list[int]) -> int:
22
"""
33
Returns the length of the shortest contiguous subarray
44
in a list of numbers whose sum is at least target.

0 commit comments

Comments
 (0)