Skip to content

Instantly share code, notes, and snippets.

@clementi
Created February 9, 2011 20:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clementi/819163 to your computer and use it in GitHub Desktop.
Save clementi/819163 to your computer and use it in GitHub Desktop.
Project Euler Problem #24 Solution
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