mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 11:30:18 +00:00
9 lines
155 B
Python
9 lines
155 B
Python
import time
|
|
_0 = time.time()
|
|
|
|
import random
|
|
|
|
a = [random.randint(-100000, 100000) for i in range(1500)]
|
|
a = sorted(a)
|
|
|
|
print(round(time.time()-_0, 6), 's') |