From 1541edc145f2d4b2db520382e12e4bfbec49a031 Mon Sep 17 00:00:00 2001 From: Roger Turnau Date: Fri, 14 Aug 2015 16:29:16 -0400 Subject: [PATCH] Added improved instructions to Least Common Multiple Bonfire. --- challenges/intermediate-bonfires.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/intermediate-bonfires.json b/challenges/intermediate-bonfires.json index 954d402ce9..c47d55b9ef 100644 --- a/challenges/intermediate-bonfires.json +++ b/challenges/intermediate-bonfires.json @@ -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 Read-Search-Ask if you get stuck. Try to pair program. Write your own code." ],