end of day 4 week 1

This commit is contained in:
2026-01-22 07:31:44 +01:00
parent 5120f11339
commit 82b79336ea
15 changed files with 247 additions and 0 deletions

17
week 1/day 3/exo5.md Normal file
View File

@@ -0,0 +1,17 @@
Answer in plain text:
If the users table doubles in size, what happens to execution time?
Write the runtime formula using:
n = number of rows
m = average username length
if the number of user double a size
the it mutiple by two the number of execution
$$
T(2n,m) = 2 \times n \times m
$$
Growth is linear