We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a092d3 commit 56045c1Copy full SHA for 56045c1
lcm.py
@@ -1,4 +1,4 @@
1
-# computes Lowest Common Multiple LCM / Least Common Denominator LCD
+# computes Lowest Common Multiple (LCM) / Least Common Denominator (LCD)
2
# useful for adding and subtracting fractions
3
4
# 2 numbers
@@ -21,4 +21,4 @@ def lcm3(nums):
21
print(str(lcm(7, 12)))
22
23
nums = [3, 2, 16]
24
-print(str(lcm3(nums)))
+print(str(lcm3(nums)))
0 commit comments