euler/python/e024.py

3 lines
95 B
Python

from itertools import permutations
print("".join(list(permutations("0123456789"))[1000000-1]))