MCPcopy Create free account
hub / github.com/subbarayudu-j/TheAlgorithms-Python / find_lcm.py

File find_lcm.py

Maths/find_lcm.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1def find_lcm(num_1, num_2):
2 max = num_1 if num_1 > num_2 else num_2
3 lcm = max
4 while (True):

Callers

nothing calls this directly

Calls 1

mainFunction · 0.70

Tested by

no test coverage detected