From 56045c1a7ecd4579e51aed358861abbaa7a8dee9 Mon Sep 17 00:00:00 2001 From: gopesanjay772 <72152228+gopesanjay772@users.noreply.github.com> Date: Sat, 17 Oct 2020 10:03:45 +0530 Subject: [PATCH] Update lcm.py --- lcm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lcm.py b/lcm.py index 8d584ab7..a308141e 100644 --- a/lcm.py +++ b/lcm.py @@ -1,4 +1,4 @@ -# computes Lowest Common Multiple LCM / Least Common Denominator LCD +# computes Lowest Common Multiple (LCM) / Least Common Denominator (LCD) # useful for adding and subtracting fractions # 2 numbers @@ -21,4 +21,4 @@ def lcm3(nums): print(str(lcm(7, 12))) nums = [3, 2, 16] -print(str(lcm3(nums))) \ No newline at end of file +print(str(lcm3(nums)))