Added Problem 24

This commit is contained in:
Robert 2020-02-13 17:59:38 +01:00
parent 68438890e7
commit 0738ebf590
2 changed files with 19 additions and 1 deletions

View file

@ -27,3 +27,4 @@ for i in range(1, 28124):
final_sum += i
print(final_sum)
# Solution: 4179871

17
Problem_024.py Normal file
View file

@ -0,0 +1,17 @@
digits = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
def permutate(symbols, prev=""):
if len(symbols) == 1:
return [int(prev + str(symbols[0]))]
perms = []
for symbol in symbols:
orig = symbols.copy()
orig.remove(symbol)
perms += permutate(orig, prev=prev+str(symbol))
return perms
permutations = sorted(permutate(digits))
print(permutations[999999])
# Solution: 2783915460