Topic: Smallest multiple
Problem Statement:
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 by all of the numbers from 1 to 20?
You can find the original question here -> Project Euler
Largest palindrome product - Project Euler Solution
Deepak Raj ・ Aug 1 '20
Smallest multiple - Project Euler Solution in python
from math import gcd
def lcm(a,b):
"Calculate the lowest common multiple of two integers a and b"
return a*b//gcd(a,b)
from functools import reduce
result = reduce(lcm, range(1,11))
print(result)
Share Your Solutions for smallest multiple
Top comments (0)