From cd97f2b7030b9cefcc28fc6c11215a49048e54d1 Mon Sep 17 00:00:00 2001 From: Louis Date: Mon, 27 Nov 2023 13:53:41 +0100 Subject: [PATCH] vault backup: 2023-11-27 13:53:41 --- Algo/B2/Exercises/Repetitive tutorial.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Algo/B2/Exercises/Repetitive tutorial.md b/Algo/B2/Exercises/Repetitive tutorial.md index cddd208..ab006ed 100644 --- a/Algo/B2/Exercises/Repetitive tutorial.md +++ b/Algo/B2/Exercises/Repetitive tutorial.md @@ -219,6 +219,7 @@ def prime(n: int) -> int: while d*d <= n and n % d!= 0: d += 2 return d*d > n +``` ## Exercise 3.3 ```python def quotient(a: int, b: int) -> int: