3 lines
93 B
Python
3 lines
93 B
Python
|
print(sorted(set(range(100))))
|
||
|
print(sorted(set(range(100)), key=lambda x: x + 100*(x % 2)))
|