From 6a82a4c6c594508436835c8127d8d2f1b931a300 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 4 Sep 2021 08:08:35 +1000 Subject: [PATCH] docs: fix simple typo, higest -> highest There is a small typo in algorithms/list.py. Should read `highest` rather than `higest`. --- algorithms/list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/algorithms/list.py b/algorithms/list.py index ce7e1c8..1546904 100644 --- a/algorithms/list.py +++ b/algorithms/list.py @@ -24,7 +24,7 @@ def find_int(i, lst): def find_max_sub(lst): - """Find subset with higest sum. + """Find subset with highest sum. Example: [-2, 3, -4, 5, 1, -5] -> (3,4), 6 @param lst list