From 26b0afcfb852c1c72dfd37895d0fc8bf3b7b4d06 Mon Sep 17 00:00:00 2001 From: Louis Date: Mon, 20 Nov 2023 13:36:54 +0100 Subject: [PATCH] vault backup: 2023-11-20 13:36:54 --- Algo/B2/Exercises/Repetitive tutorial.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Algo/B2/Exercises/Repetitive tutorial.md b/Algo/B2/Exercises/Repetitive tutorial.md index 89a384a..9dc1c46 100644 --- a/Algo/B2/Exercises/Repetitive tutorial.md +++ b/Algo/B2/Exercises/Repetitive tutorial.md @@ -44,3 +44,9 @@ def multiplication2(x: int, y: int) -> int: result = result + x i += 1 return result +``` + +## Exercise 1.3 +``` +def exponentiation(x: int, n: int) -> int: + \ No newline at end of file