We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(this proposed fix has been approved by @joelburton on the corresponding file in curric)
curric
Some people are reporting a bug due to nebulous wording in our directions.
Current directions read:
Write a function called squareEvenNumbers which accepts an array and returns the sum of all of the even numbers in the array squared.
Which could lead people to think they should add up the evens, and then square the result. So with this example, they'd get 36 instead of 20:
squareEvenNumbers([1, 2, 3, 4, 5]); // 20
Propose re-writing the directions to:
“…returns the sum of the squares of all the even numbers in the array.”
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
(this proposed fix has been approved by @joelburton on the corresponding file in
curric
)Some people are reporting a bug due to nebulous wording in our directions.
Current directions read:
Which could lead people to think they should add up the evens, and then square the result. So with this example, they'd get 36 instead of 20:
Propose re-writing the directions to:
The text was updated successfully, but these errors were encountered: