Skip to content

Commit 6a82a4c

Browse files
committed
docs: fix simple typo, higest -> highest
There is a small typo in algorithms/list.py. Should read `highest` rather than `higest`.
1 parent e565d73 commit 6a82a4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

algorithms/list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def find_int(i, lst):
2424

2525

2626
def find_max_sub(lst):
27-
"""Find subset with higest sum.
27+
"""Find subset with highest sum.
2828
2929
Example: [-2, 3, -4, 5, 1, -5] -> (3,4), 6
3030
@param lst list

0 commit comments

Comments
 (0)