2019-07-16 23:09:53 +00:00
|
|
|
"""
|
2020-10-07 09:59:55 +00:00
|
|
|
Problem 20: https://projecteuler.net/problem=20
|
|
|
|
|
2024-04-22 19:51:47 +00:00
|
|
|
n! means n x (n - 1) x ... x 3 x 2 x 1
|
2019-07-16 23:09:53 +00:00
|
|
|
|
2024-04-22 19:51:47 +00:00
|
|
|
For example, 10! = 10 x 9 x ... x 3 x 2 x 1 = 3628800,
|
2019-07-16 23:09:53 +00:00
|
|
|
and the sum of the digits in the number 10! is 3 + 6 + 2 + 8 + 8 + 0 + 0 = 27.
|
|
|
|
|
|
|
|
Find the sum of the digits in the number 100!
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2020-10-07 09:59:55 +00:00
|
|
|
def factorial(num: int) -> int:
|
|
|
|
"""Find the factorial of a given number n"""
|
2018-10-19 12:48:28 +00:00
|
|
|
fact = 1
|
2020-10-07 09:59:55 +00:00
|
|
|
for i in range(1, num + 1):
|
2018-10-19 12:48:28 +00:00
|
|
|
fact *= i
|
|
|
|
return fact
|
|
|
|
|
2019-07-16 23:09:53 +00:00
|
|
|
|
2020-10-07 09:59:55 +00:00
|
|
|
def split_and_add(number: int) -> int:
|
2019-07-16 23:09:53 +00:00
|
|
|
"""Split number digits and add them."""
|
2018-10-19 12:48:28 +00:00
|
|
|
sum_of_digits = 0
|
2019-07-16 23:09:53 +00:00
|
|
|
while number > 0:
|
2018-10-19 12:48:28 +00:00
|
|
|
last_digit = number % 10
|
|
|
|
sum_of_digits += last_digit
|
2019-07-16 23:09:53 +00:00
|
|
|
number = number // 10 # Removing the last_digit from the given number
|
2018-10-19 12:48:28 +00:00
|
|
|
return sum_of_digits
|
|
|
|
|
|
|
|
|
2020-10-07 09:59:55 +00:00
|
|
|
def solution(num: int = 100) -> int:
|
|
|
|
"""Returns the sum of the digits in the factorial of num
|
2019-07-16 23:09:53 +00:00
|
|
|
>>> solution(100)
|
|
|
|
648
|
|
|
|
>>> solution(50)
|
|
|
|
216
|
|
|
|
>>> solution(10)
|
|
|
|
27
|
|
|
|
>>> solution(5)
|
|
|
|
3
|
|
|
|
>>> solution(3)
|
|
|
|
6
|
|
|
|
>>> solution(2)
|
|
|
|
2
|
|
|
|
>>> solution(1)
|
|
|
|
1
|
|
|
|
"""
|
2020-10-07 09:59:55 +00:00
|
|
|
nfact = factorial(num)
|
|
|
|
result = split_and_add(nfact)
|
2019-07-16 23:09:53 +00:00
|
|
|
return result
|
2018-10-19 12:48:28 +00:00
|
|
|
|
|
|
|
|
2019-07-16 23:09:53 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
print(solution(int(input("Enter the Number: ").strip())))
|