From 0f1afcd16a007281b3e7bb204362c17a53c48d4b Mon Sep 17 00:00:00 2001 From: Louis Date: Mon, 20 Nov 2023 14:49:50 +0100 Subject: [PATCH] vault backup: 2023-11-20 14:49:50 --- Algo/B2/Exercises/Repetitive tutorial.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Algo/B2/Exercises/Repetitive tutorial.md b/Algo/B2/Exercises/Repetitive tutorial.md index 9726c07..9902adb 100644 --- a/Algo/B2/Exercises/Repetitive tutorial.md +++ b/Algo/B2/Exercises/Repetitive tutorial.md @@ -53,4 +53,5 @@ def exponetial(x: int, n: int) -> int: while n > 0: m *= x n -= 1 - return result \ No newline at end of file + return result +```