Answers for "inbuilt lcm function in python"

C++
2

lcm math python library

from math import gcd
def lcm(a,b):
  return a*b/(gcd(a,b))
print(lcm(12,70))
//output: 420
Posted by: Guest on June-07-2020
-2

python find lcm

def lcm(a, b):
        i = 1
        if a > b:
                c = a
                d = b
        else:
                c = b
                d = a
        while True:
                if ((c * i) / d).is_integer():
                        return c * i
                i += 1;
Posted by: Guest on July-05-2020

Code answers related to "inbuilt lcm function in python"

Browse Popular Code Answers by Language