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.
This commit is contained in:
Thomas KUNTZ
2017-05-27 15:12:48 +02:00
committed by mrugesh mohapatra
parent cd7f24defd
commit 539d5a2ae1

View File

@ -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 <a href='http://forum.freeCodeCamp.com/t/how-to-get-help-when-you-are-stuck/19514' target='_blank'>Read-Search-Ask</a> if you get stuck. Try to pair program. Write your own code."
],