vault backup: 2023-11-27 13:53:41

This commit is contained in:
Louis Gallet 2023-11-27 13:53:41 +01:00
parent a8f94175a8
commit cd97f2b703
Signed by: lgallet
SSH Key Fingerprint: SHA256:qnW7pk4EoMRR0UftZLZQKSMUImbEFsiruLC7jbCHJAY

View File

@ -219,6 +219,7 @@ def prime(n: int) -> int:
while d*d <= n and n % d!= 0: while d*d <= n and n % d!= 0:
d += 2 d += 2
return d*d > n return d*d > n
```
## Exercise 3.3 ## Exercise 3.3
```python ```python
def quotient(a: int, b: int) -> int: def quotient(a: int, b: int) -> int: