mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-19 19:03:02 +08:00
Add type hints and default args for problem 20 (#2962)
- Improved variable names - Added type hints - Added default argument values for validate_solutions script
This commit is contained in:
@ -1,4 +1,6 @@
|
||||
"""
|
||||
Problem 20: https://projecteuler.net/problem=20
|
||||
|
||||
n! means n × (n − 1) × ... × 3 × 2 × 1
|
||||
|
||||
For example, 10! = 10 × 9 × ... × 3 × 2 × 1 = 3628800,
|
||||
@ -9,8 +11,8 @@ Find the sum of the digits in the number 100!
|
||||
from math import factorial
|
||||
|
||||
|
||||
def solution(n):
|
||||
"""Returns the sum of the digits in the number 100!
|
||||
def solution(num: int = 100) -> int:
|
||||
"""Returns the sum of the digits in the factorial of num
|
||||
>>> solution(1000)
|
||||
10539
|
||||
>>> solution(200)
|
||||
@ -32,7 +34,7 @@ def solution(n):
|
||||
>>> solution(0)
|
||||
1
|
||||
"""
|
||||
return sum(map(int, str(factorial(n))))
|
||||
return sum(map(int, str(factorial(num))))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
Reference in New Issue
Block a user