Created
February 9, 2011 20:03
-
-
Save clementi/819163 to your computer and use it in GitHub Desktop.
Project Euler Problem #24 Solution
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from itertools import permutations | |
MILLIONTH = 10 ** 6 - 1 | |
print reduce(lambda x, y: str(x) + str(y), list(permutations(range(10), 10))[MILLIONTH]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment