sort.py 89 B

1234
  1. import random
  2. a = [random.randint(-100000, 100000) for i in range(100000)]
  3. a = sorted(a)