vault backup: 2023-11-20 13:36:54

This commit is contained in:
Louis Gallet 2023-11-20 13:36:54 +01:00
parent e083301e82
commit 26b0afcfb8
Signed by: lgallet
SSH Key Fingerprint: SHA256:qnW7pk4EoMRR0UftZLZQKSMUImbEFsiruLC7jbCHJAY

View File

@ -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: