You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
144 B
6 lines
144 B
# test large list sorting (should not stack overflow)
|
|
l = list(range(2000))
|
|
l.sort()
|
|
print(l[0], l[-1])
|
|
l.sort(reverse=True)
|
|
print(l[0], l[-1])
|
|
|