mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
64 lines
1.7 KiB
Python
64 lines
1.7 KiB
Python
"""
|
|
Problem:
|
|
2520 is the smallest number that can be divided by each of the numbers from 1
|
|
to 10 without any remainder.
|
|
|
|
What is the smallest positive number that is evenly divisible(divisible with no
|
|
remainder) by all of the numbers from 1 to N?
|
|
"""
|
|
|
|
|
|
def solution(n):
|
|
"""Returns the smallest positive number that is evenly divisible(divisible
|
|
with no remainder) by all of the numbers from 1 to n.
|
|
|
|
>>> solution(10)
|
|
2520
|
|
>>> solution(15)
|
|
360360
|
|
>>> solution(20)
|
|
232792560
|
|
>>> solution(22)
|
|
232792560
|
|
>>> solution(3.4)
|
|
6
|
|
>>> solution(0)
|
|
Traceback (most recent call last):
|
|
...
|
|
ValueError: Parameter n must be greater or equal to one.
|
|
>>> solution(-17)
|
|
Traceback (most recent call last):
|
|
...
|
|
ValueError: Parameter n must be greater or equal to one.
|
|
>>> solution([])
|
|
Traceback (most recent call last):
|
|
...
|
|
TypeError: Parameter n must be int or passive of cast to int.
|
|
>>> solution("asd")
|
|
Traceback (most recent call last):
|
|
...
|
|
TypeError: Parameter n must be int or passive of cast to int.
|
|
"""
|
|
try:
|
|
n = int(n)
|
|
except (TypeError, ValueError) as e:
|
|
raise TypeError("Parameter n must be int or passive of cast to int.")
|
|
if n <= 0:
|
|
raise ValueError("Parameter n must be greater or equal to one.")
|
|
i = 0
|
|
while 1:
|
|
i += n * (n - 1)
|
|
nfound = 0
|
|
for j in range(2, n):
|
|
if i % j != 0:
|
|
nfound = 1
|
|
break
|
|
if nfound == 0:
|
|
if i == 0:
|
|
i = 1
|
|
return i
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print(solution(int(input().strip())))
|