Factorions: Difference between revisions

Content added Content deleted
(Fix Python solution as it was incorrect output (The factorions for base 9 were: 0 1 2 41282))
Line 880: Line 880:
for b in range(9, 12+1):
for b in range(9, 12+1):
print(f"The factorions for base {b} are:")
print(f"The factorions for base {b} are:")
for i in range(1500000):
for i in range(1, 1500000):
fact_sum = 0
fact_sum = 0
j = i
j = i