From ae0f191a499794dd316337e636aebff655c1e19d Mon Sep 17 00:00:00 2001 From: Louis Date: Mon, 13 Nov 2023 14:33:56 +0100 Subject: [PATCH] vault backup: 2023-11-13 14:33:56 --- Algo/B2/Exercises/Imperative exercise.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Algo/B2/Exercises/Imperative exercise.md b/Algo/B2/Exercises/Imperative exercise.md index 16a2a64..6cac977 100644 --- a/Algo/B2/Exercises/Imperative exercise.md +++ b/Algo/B2/Exercises/Imperative exercise.md @@ -19,7 +19,7 @@ def abs (n): if n > 0: return n else: - return (-1)*n + return -n def loop (n): n = abs(n)