vault backup: 2023-11-13 13:56:26

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

View File

@ -4,7 +4,10 @@ def test (n: int) -> bool:
return n >= 100 and n < 100
def sum_digits (n: int) -> int:
a = n//100
b = (n//10)%10
c = n%10
return a*b*c
```
## Exercise 2: