From 5900f87c407b5549fa0dc3f9a53f4c17c593b4d0 Mon Sep 17 00:00:00 2001 From: Nishant Mishra Date: Tue, 20 Nov 2018 04:52:33 +0530 Subject: [PATCH] Added guide article for tools: Least Common Multiple Calculator (#22314) Replaced stub with guide article on LCM calculator --- .../least-common-multiple-calculator/index.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/guide/english/tools/calculators/least-common-multiple-calculator/index.md b/guide/english/tools/calculators/least-common-multiple-calculator/index.md index 4c29024462..0f286c5795 100644 --- a/guide/english/tools/calculators/least-common-multiple-calculator/index.md +++ b/guide/english/tools/calculators/least-common-multiple-calculator/index.md @@ -3,13 +3,13 @@ title: Least Common Multiple Calculator --- ## Least Common Multiple Calculator -This is a stub. Help our community expand it. +A Least Common Multiple(also known as LCM) of two numbers is the smallest number which can be divided by both numbers. -This quick style guide will help ensure your pull request gets accepted. +To calculate the LCM(Least Common Multiple) online, use: +* [LCM Calculator](https://www.calculatorsoup.com/calculators/math/lcm.php) - +Or if you want to implement it yourself or want to understand how it's calculated, look here: +* [Program to find LCM of 2 numbers](https://www.geeksforgeeks.org/program-to-find-lcm-of-two-numbers/) #### More Information: - - - +* [Least Common Multiple Wiki](https://en.wikipedia.org/wiki/Least_common_multiple)