14 lines
166 B
Markdown
14 lines
166 B
Markdown
## Exercise 1:
|
|
```python
|
|
def test (n: int) -> bool:
|
|
if (n >= 100):
|
|
if (n < 1000):
|
|
return true
|
|
else:
|
|
return false
|
|
else:
|
|
return false
|
|
```
|
|
|
|
## Exercise 2:
|