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.
pull/18182/head
Thomas KUNTZ 2017-05-27 15:12:48 +02:00 committed by mrugesh mohapatra
parent ae19c6b7ca
commit 51ae1a4c2b
1 changed files with 1 additions and 1 deletions

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."
],