Skip to content

Commit 56045c1

Browse files
Update lcm.py
1 parent 8a092d3 commit 56045c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lcm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# computes Lowest Common Multiple LCM / Least Common Denominator LCD
1+
# computes Lowest Common Multiple (LCM) / Least Common Denominator (LCD)
22
# useful for adding and subtracting fractions
33

44
# 2 numbers
@@ -21,4 +21,4 @@ def lcm3(nums):
2121
print(str(lcm(7, 12)))
2222

2323
nums = [3, 2, 16]
24-
print(str(lcm3(nums)))
24+
print(str(lcm3(nums)))

0 commit comments

Comments
 (0)