Skip to content

Created problem_45 in project_euler and Speed Boost for problem_34/sol1.py #2349

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Aug 25, 2020
50 changes: 10 additions & 40 deletions project_euler/problem_34/sol1.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,64 +4,34 @@
Note: As 1! = 1 and 2! = 2 are not sums they are not included.
"""


def factorial(n: int) -> int:
"""Return the factorial of n.
>>> factorial(5)
120
>>> factorial(1)
1
>>> factorial(0)
1
>>> factorial(-1)
Traceback (most recent call last):
...
ValueError: n must be >= 0
>>> factorial(1.1)
Traceback (most recent call last):
...
ValueError: n must be exact integer
"""

if not n >= 0:
raise ValueError("n must be >= 0")
if int(n) != n:
raise ValueError("n must be exact integer")
if n + 1 == n: # catch a value like 1e300
raise OverflowError("n too large")
result = 1
factor = 2
while factor <= n:
result *= factor
factor += 1
return result
from math import factorial


def sum_of_digit_factorial(n: int) -> int:
"""
"""
Returns the sum of the digits in n
>>> sum_of_digit_factorial(15)
121
>>> sum_of_digit_factorial(0)
1
"""
return sum(factorial(int(digit)) for digit in str(n))
digits = list(map(int, str(n)))
summ = sum(factorial(digit) for digit in digits)
return summ


def compute() -> int:
"""
Returns the sum of all numbers whose
Returns the sum of all numbers whose
sum of the factorials of all digits
add up to the number itself.
>>> compute()
40730
"""
return sum(
num
for num in range(3, 7 * factorial(9) + 1)
if sum_of_digit_factorial(num) == num
)
limit = 7 * factorial(9)
nums = [num for num in range(3, limit) if sum_of_digit_factorial(num) == num]
return sum(nums)


if __name__ == "__main__":
print(compute())
print(f"{compute()} = ")