Added improved instructions to Least Common Multiple Bonfire.

This commit is contained in:
Roger Turnau
2015-08-14 16:29:16 -04:00
parent e55b3f1782
commit 1541edc145

View File

@ -547,7 +547,7 @@
"title": "Smallest Common Multiple",
"difficulty": "2.11",
"description": [
"Find the smallest number that is evenly divisible by all numbers in the provided range.",
"Find the smallest number that is evenly divisible by all numbers in the provided range. In other words, given the range [3,7], you will need to find the least common multiple of 3, 4, 5, 6, and 7.",
"The range will be an array of two numbers that will not necessarily be in numerical order.",
"Remember to use <a href='//github.com/FreeCodeCamp/freecodecamp/wiki/How-to-get-help-when-you-get-stuck' target='_blank'>Read-Search-Ask</a> if you get stuck. Try to pair program. Write your own code."
],