euler/python/e024.py

3 lines
95 B
Python
Raw Normal View History

2015-11-16 20:56:24 +01:00
from itertools import permutations
print("".join(list(permutations("0123456789"))[1000000-1]))