Online Chess Classes | ZugZwang Academy

View Original

LCM of two Numbers | Python Programming

LCM (Least Common Multiple) of two numbers is the smallest number which can be divided by both numbers. 

For example, LCM of 15 and 20 is 60, and LCM of 5 and 7 is 35.

A simple solution is to find all prime factors of both numbers, then find union of all factors present in both numbers. Finally, return the product of elements in union.

Solution : Replit

For More Updates : AlgoThink by Bharat Divyang