-1
votes
1answer
156 views

Wrong Answer in interview street challenge

First of all a small clarification.I did got AC in this problem,but my better approach (which is mathematically equivalent,I assume to my AC solution) is getting a WA verdict There is a problem in ...
1
vote
2answers
429 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 ...
0
votes
1answer
589 views

GCD and LCM relation

The following relation works only for two (3, 12) numbers, it fails to produce the right answer when used for three numbers (3,12,10) . Just wondering if is it my understanding or it is just for two ...
0
votes
3answers
1k views

LCM of two numbers

I am getting wrong result for my LCM program. Ifirst find gcd of the numbers and then divide the product with gcd. int gcd(int x, int y) { while(y != 0) { int save = y; y = x % y; x ...
4
votes
2answers
344 views

How can I optimize my C / x86 code?

int lcm_old(int a, int b) { int n; for(n=1;;n++) if(n%a == 0 && n%b == 0) return n; } int lcm(int a,int b) { int n = 0; __asm { lstart: inc n; ...