vault backup: 2023-11-13 13:50:53
Before Width: | Height: | Size: 466 KiB After Width: | Height: | Size: 466 KiB |
Before Width: | Height: | Size: 654 KiB After Width: | Height: | Size: 654 KiB |
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 84 KiB |
Before Width: | Height: | Size: 464 KiB After Width: | Height: | Size: 464 KiB |
Before Width: | Height: | Size: 75 KiB After Width: | Height: | Size: 75 KiB |
Before Width: | Height: | Size: 293 KiB After Width: | Height: | Size: 293 KiB |
Before Width: | Height: | Size: 867 KiB After Width: | Height: | Size: 867 KiB |
Before Width: | Height: | Size: 789 KiB After Width: | Height: | Size: 789 KiB |
13
Algo/B2/Exercises/Imperative exercise.md
Normal file
@ -0,0 +1,13 @@
|
||||
## Exercise 1:
|
||||
```python
|
||||
def test (n: int) -> bool:
|
||||
if (n >= 100):
|
||||
if (n < 1000):
|
||||
return true
|
||||
else:
|
||||
return false
|
||||
else:
|
||||
return false
|
||||
```
|
||||
|
||||
## Exercise 2:
|