Skip to content

Commit c88303d

Browse files
authored
Update minimum_size_subarray_sum.py
1 parent c20a5b1 commit c88303d

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

dynamic_programming/minimum_size_subarray_sum.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,4 @@ def minimum_subarray_sum(target: int, numbers: list[int]) -> int:
5959
return 0 if min_len == sys.maxsize else min_len
6060

6161

62-
if __name__ == "__main__":
63-
from doctest import testmod
6462

65-
testmod()()

0 commit comments

Comments
 (0)