pascalabcnet/InstallerSamples/SPython/set_example.pys

11 lines
141 B
Plaintext
Raw Normal View History

2025-08-31 17:21:18 +03:00
from time import time
s: set[int] = set()
t1 = time()
for i in range(1, 1000000):
s |= {i}
t2 = time()
print(t2 - t1)
print(len(s))