Skip to content

Commit 9dd0170

Browse files
Fixing the long line
1 parent e4d6dc3 commit 9dd0170

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dynamic_programming/longest_sub_array.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
def longest_sub_array(arr:list):
1414
"""
15-
Find the longest continuous subarray with the maximum sum within a given list of integers.
15+
Find the longest continuous subarray with the maximum sum.
1616
1717
Args:
1818
arr (list): A list of integers.
@@ -62,4 +62,4 @@ def longest_sub_array(arr:list):
6262
if __name__ == "__main__":
6363
import doctest
6464

65-
doctest.testmod()
65+
doctest.testmod()

0 commit comments

Comments
 (0)