From 539d5a2ae1fb2f0fb3b97fcb3cd7cb671e9f0f45 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/seed/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json b/seed/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json index fe3f6a3282..0e2f77a5f0 100644 --- a/seed/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json +++ b/seed/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." ],