Tagged Questions
1
vote
1answer
290 views
Computing LCM of M consecutive numbers in an array of N integers
I came across this problem here. It was a programming contest held earlier this year.
Here is the summary :
Given an array of N integers, find LCM of all consecutive M integers.
For e.g.
Array = ...
1
vote
2answers
430 views
How to get GCD and LCM of a range of numbers efficiently?
I currently use this code to find gcd and lcm
def gcd(a, b):
while b != 0:
a, b = b, a%b
return a
def lcm(a, b):
result = a*b/gcd(a,b)
return result
But what if I want to ...
-1
votes
2answers
815 views
How to find Least Common Multiple (LCM) for two numbers
I have used Euclid's method to find the L.C.M for two numbers.
l.c.m=a*b/(gcd(a,b))
How can I do this without using this algorithm?
I have an idea of first getting all factors of these two numbers ...
9
votes
5answers
12k views
How to find GCF, LCM on a set of numbers
What would be the easiest way to calculate Greatest Common Factor, Least Common Multiple on a set of numbers. What math functions can be used to find this information
9
votes
10answers
8k views
Finding the LCM of a range of numbers
I read an interesting DailyWTF post today, "Out of All The Possible Answers..." and it interested me enough to dig up the original forum post where it was submitted. This got me thinking how I would ...
33
votes
8answers
25k views
Least common multiple for 3 or more numbers
How do you calculate the least common multiple of multiple numbers?
So far I've only been able to calculate it between two numbers. But have no idea how to expand it to calculate 3 or more numbers.
...