vault backup: 2023-11-27 13:53:41
This commit is contained in:
@ -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:
|
||||
|
Reference in New Issue
Block a user