Added Problem 24
This commit is contained in:
parent
68438890e7
commit
0738ebf590
|
@ -26,4 +26,5 @@ for i in range(1, 28124):
|
|||
if i not in sums:
|
||||
final_sum += i
|
||||
|
||||
print(final_sum)
|
||||
print(final_sum)
|
||||
# Solution: 4179871
|
17
Problem_024.py
Normal file
17
Problem_024.py
Normal 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
|
Loading…
Reference in a new issue