From f9e23dc7b1d662e16a4ebc1247ddcda3f9d2f48e Mon Sep 17 00:00:00 2001 From: Blaise Li <blaise.li__git@nsup.org> Date: Wed, 9 Jun 2021 16:16:17 +0200 Subject: [PATCH] Typo. --- source/Control_Flow_Statements.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/Control_Flow_Statements.rst b/source/Control_Flow_Statements.rst index 258289b..3a04541 100644 --- a/source/Control_Flow_Statements.rst +++ b/source/Control_Flow_Statements.rst @@ -69,16 +69,16 @@ implementation return the maximum value in a sequence work only with integer or float """ - higest = seq[0] + highest = seq[0] for i in seq: if i > highest: highest = i return highest - + l = [1,2,3,4,58,9] print my_max(l) 58 - + .. _enzyme_exercise: -- GitLab