Add type hints and default args for Project Euler problem 5 (#2982)

* add type hints and default args for problem 5

* Update sol1.py

* Update sol2.py

Co-authored-by: Dhruv <dhruvmanila@gmail.com>
This commit is contained in:
Suyash Gupta
2020-10-08 08:50:11 +05:30
committed by GitHub
parent ff9be86390
commit 6a5a022082
2 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@ remainder) by all of the numbers from 1 to N?
"""
def solution(n):
def solution(n: int = 20) -> int:
"""Returns the smallest positive number that is evenly divisible(divisible
with no remainder) by all of the numbers from 1 to n.