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))
(Fix Python solution for correct output)
Line 889: Line 889:
if fact_sum == i:
if fact_sum == i:
print(i, end=" ")
print(i, end=" ")
print()
print("\n")
</lang>
</lang>