Skip to content

Commit 84f6ff7

Browse files
committed
test error
1 parent dd916d4 commit 84f6ff7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pydatastructs/linear_data_structures/algorithms.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1892,10 +1892,12 @@ def maximum_subarray_sum_1(array, **kwargs):
18921892
>>> arr = ODA(int, [1, 2, 3, 4, 5])
18931893
>>> maximum_subarray_sum_1(arr)
18941894
15
1895+
18951896
References
18961897
==========
18971898
.. [1] https://en.wikipedia.org/wiki/Maximum_subarray_problem
1898-
"""
1899+
python -m doctest -v pydatastructs/linear_data_structures/algorithms.py
1900+
"""
18991901
raise_if_backend_is_not_python(
19001902
maximum_subarray_sum_1, kwargs.get('backend', Backend.PYTHON))
19011903
start = kwargs.get('start', 0)

0 commit comments

Comments
 (0)