Skip to content

Commit

Permalink
solved 24
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Marrone committed Sep 30, 2011
1 parent 750443e commit ff3fbe6
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions python/24.py
@@ -0,0 +1,10 @@
import itertools

count = 0
for each in itertools.permutations('0123456789'):
count += 1
if count == 1000000:
print each
print count


0 comments on commit ff3fbe6

Please sign in to comment.