Find the sum of all numbers which are equal to the sum of the factorial of their digits.
Note: As
Let
from math import factorial
def p34():
res = 0
fact = list(map(factorial, range(10)))
for n in range(3, 10 ** 7):
n_cpy, f = n, 0
while n_cpy > 0:
f += fact[n_cpy % 10]
n_cpy //= 10
if n == f:
res += n
return res