Skip to content

Commit e0c3df1

Browse files
committed
feat: added maximum_subarray_sum
1 parent b2a2dc6 commit e0c3df1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydatastructs/linear_data_structures/algorithms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1807,7 +1807,7 @@ def intro_sort(array, **kwargs) -> Array:
18071807
intro_sort, kwargs.get('backend', Backend.PYTHON))
18081808

18091809
# Always sorts in increasing order, this is because of
1810-
# heapsort's limitation
1810+
# heapsort's limitatio
18111811
comp = lambda u, v: u <= v
18121812
lower = kwargs.get('start', 0)
18131813
upper = kwargs.get('end', len(array) - 1)

0 commit comments

Comments
 (0)