diff --git a/Problem_023.py b/Problem_023.py index afb17de..72401b2 100644 --- a/Problem_023.py +++ b/Problem_023.py @@ -26,4 +26,5 @@ for i in range(1, 28124): if i not in sums: final_sum += i -print(final_sum) \ No newline at end of file +print(final_sum) +# Solution: 4179871 \ No newline at end of file diff --git a/Problem_024.py b/Problem_024.py new file mode 100644 index 0000000..9b9e68b --- /dev/null +++ b/Problem_024.py @@ -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 \ No newline at end of file