Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Not a suggestion.
This comment is hidden because it contains spoiler information about the solution
probably in some languages there are problems with the entry point to the program, but for C# this is not the case, so I would exclude sharp for this task
It was fun) respect the author
Have you tried to search for documentation online? Just something like "check empty array JavaScript", "check null array JavaScript"?
You're doing it wrong. Try reading the posts below.
P.S.: your current code works.
Apparently, a lot.
This comment is hidden because it contains spoiler information about the solution
Not an issue ~~ There's this in description too
If the input is an empty array or is null, return an empty array.
The description quite literally says "given an array of integers", yet one test gives
null
as the input, which results inTypeError: Cannot read property 'length' of null
when correctly assuming that you always get an array (as per description) and merely need to test for its length.You have already decided you have either the sum of the elements or the number of elements. The tests are wrong.