Project Euler Problem#30
#python program to sum of all the numbers that can be written as the sum of fifth powers of their digits
import unittest
def digit_sum(power):
if type(power)!=int or power<2:
return None
list1=[]
for i in range(2,1000000):
...
mycodingjourneyy.hashnode.dev1 min read