Skip to content

Commit b67b6f7

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent d3cd162 commit b67b6f7

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
@@ -7,7 +7,7 @@ def minimum_subarray_sum(target: int, numbers: list[int]) -> int:
77
in a list of numbers whose sum is at least target.
88
99
Reference: https://stackoverflow.com/questions/8269916/what-is-sliding-window-algorithm-examples
10-
10+
1111
>>> minimum_subarray_sum(7, [2, 3, 1, 2, 4, 3])
1212
2
1313
>>> minimum_subarray_sum(7, [2, 3, -1, 2, 4, -3])

0 commit comments

Comments
 (0)