vault backup: 2023-11-24 14:43:31

This commit is contained in:
Louis Gallet 2023-11-24 14:43:31 +01:00
parent 39fe17ca01
commit 56bf5c13f3
Signed by: lgallet
SSH Key Fingerprint: SHA256:qnW7pk4EoMRR0UftZLZQKSMUImbEFsiruLC7jbCHJAY
3 changed files with 8 additions and 5 deletions

View File

@ -156,11 +156,11 @@
"command-palette:Open command palette": false
}
},
"active": "c473a791e2b34194",
"active": "41ec48cdc3af71a1",
"lastOpenFiles": [
"Prog/Collections.md",
"Algo/B2/Exercises/Repetitive tutorial.md",
"Algo/B2/Exercises/Imperative exercise.md",
"Algo/B2/Exercises/Repetitive tutorial.md",
"Prog/Collections.md",
"Prog/Array.md",
"Algo/B2/Exercises",
"Algo/B2",

View File

@ -73,4 +73,6 @@ def main():
main()
else:
print("set a 3 digits number")
main()
main()
```

View File

@ -47,7 +47,7 @@ def productZ(x, y):
```
## Exercise 1.3
```
```python
def exponetial(x: int, n: int) -> int:
result = 0
while n > 0:
@ -115,3 +115,4 @@ def my_sum(n: int) -> int:
s += u(n)
n -= 1
return s
```