From 51ae1a4c2bd6ab143abf9be7c2dd01843905d20b Mon Sep 17 00:00:00 2001 From: Thomas KUNTZ Date: Sat, 27 May 2017 15:12:48 +0200 Subject: [PATCH] Fix meaning issue (#15059) The wording made think that we had to return the sum of the two numbers and *then* all the numbers between them (in the form of an array for instance). In fact we have to return the sum of the two numbers *plus* the sum of all numbers between them. --- .../intermediate-algorithm-scripting.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json b/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json index fe3f6a3282..0e2f77a5f0 100644 --- a/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json +++ b/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json @@ -8,7 +8,7 @@ "id": "a3566b1109230028080c9345", "title": "Sum All Numbers in a Range", "description": [ - "We'll pass you an array of two numbers. Return the sum of those two numbers and all numbers between them.", + "We'll pass you an array of two numbers. Return the sum of those two numbers plus the sum of all the numbers between them.", "The lowest number will not always come first.", "Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code." ],