vault backup: 2023-11-13 13:53:33

This commit is contained in:
Louis Gallet 2023-11-13 13:53:33 +01:00
parent bb839a2db9
commit 1de055a9fb
Signed by: lgallet
SSH Key Fingerprint: SHA256:qnW7pk4EoMRR0UftZLZQKSMUImbEFsiruLC7jbCHJAY

View File

@ -1,13 +1,10 @@
## Exercise 1:
```python
def test (n: int) -> bool:
if (n >= 100):
if (n < 1000):
return true
else:
return false
else:
return false
return n >= 100 and n < 100
def sum_digits (n: int) -> int:
```
## Exercise 2: