From 2ba0587fc8815d1e982ce4a00b6d34aa1f492eb1 Mon Sep 17 00:00:00 2001 From: EfimovaLA Date: Fri, 7 Nov 2025 07:41:54 +0000 Subject: [PATCH] =?UTF-8?q?=D0=BF=D1=80=D0=B0=D0=B2=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TEMA5/task5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TEMA5/task5.md b/TEMA5/task5.md index 628396d..46c8931 100644 --- a/TEMA5/task5.md +++ b/TEMA5/task5.md @@ -24,7 +24,7 @@ for i in range(len(sps)-1): next_num = sps[i+1] if next_num < current: small += 1 - if next_num > current: + elif next_num > current: big += 1 else: equal += 1