11 lines
136 B
Markdown
11 lines
136 B
Markdown
## Exercise 1:
|
|
```python
|
|
def test (n: int) -> bool:
|
|
return n >= 100 and n < 100
|
|
|
|
def sum_digits (n: int) -> int:
|
|
|
|
```
|
|
|
|
## Exercise 2:
|