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