Added guide article for tools: Least Common Multiple Calculator (#22314)

Replaced stub with guide article on LCM calculator
pull/34397/head
Nishant Mishra 2018-11-20 04:52:33 +05:30 committed by nik
parent 4fe60f500f
commit 5900f87c40
1 changed files with 6 additions and 6 deletions

View File

@ -3,13 +3,13 @@ title: Least Common Multiple Calculator
---
## Least Common Multiple Calculator
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/tools/calculators/least-common-multiple-calculator/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.
A Least Common Multiple(also known as LCM) of two numbers is the smallest number which can be divided by both numbers.
<a href='https://github.com/freecodecamp/guides/blob/master/README.md' target='_blank' rel='nofollow'>This quick style guide will help ensure your pull request gets accepted</a>.
To calculate the LCM(Least Common Multiple) online, use:
* [LCM Calculator](https://www.calculatorsoup.com/calculators/math/lcm.php)
<!-- The article goes here, in GitHub-flavored Markdown. Feel free to add YouTube videos, images, and CodePen/JSBin embeds -->
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:
<!-- Please add any articles you think might be helpful to read before writing the article -->
* [Least Common Multiple Wiki](https://en.wikipedia.org/wiki/Least_common_multiple)