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.
2 parents f9f41a6 + 56045c1 commit fb4b0c8Copy full SHA for fb4b0c8
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