From 2a4b9e26be9efc6f0d95c70a8a05a548e31e28c5 Mon Sep 17 00:00:00 2001 From: LiliiaS Date: Mon, 6 Oct 2025 23:19:05 +0200 Subject: [PATCH 1/2] =?UTF-8?q?03=5Fmax=5Fof=5Fthree=20Task=5F03=20was=20m?= =?UTF-8?q?odified=20=E2=80=94=20a=20new=20line=20return=20max(a,=20b,=20c?= =?UTF-8?q?)=20was=20added.=20All=20tests=20passed.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- python/tasks/task_03_max_of_three.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/tasks/task_03_max_of_three.py b/python/tasks/task_03_max_of_three.py index b03a1e1..44807f1 100644 --- a/python/tasks/task_03_max_of_three.py +++ b/python/tasks/task_03_max_of_three.py @@ -4,4 +4,5 @@ def max_of_three(a: int, b: int, c: int) -> int: """ Vrátí největší ze tří čísel. """ - + + return max(a, b, c) From 955ca5b6dd5c6c99b40ff4cf613eaa6f7ffb5406 Mon Sep 17 00:00:00 2001 From: LiliiaS Date: Wed, 8 Oct 2025 17:38:16 +0200 Subject: [PATCH 2/2] Update task_03_max_of_three.py deleted two spaces --- python/tasks/task_03_max_of_three.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python/tasks/task_03_max_of_three.py b/python/tasks/task_03_max_of_three.py index 44807f1..731aef3 100644 --- a/python/tasks/task_03_max_of_three.py +++ b/python/tasks/task_03_max_of_three.py @@ -4,5 +4,4 @@ def max_of_three(a: int, b: int, c: int) -> int: """ Vrátí největší ze tří čísel. """ - - return max(a, b, c) + return max(a, b, c)