vault backup: 2023-11-13 14:02:16

This commit is contained in:
Louis Gallet 2023-11-13 14:02:16 +01:00
parent 1aa009d946
commit e8d7b7a7fe
Signed by: lgallet
SSH Key Fingerprint: SHA256:qnW7pk4EoMRR0UftZLZQKSMUImbEFsiruLC7jbCHJAY

View File

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