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.
good solution but damn hard to read use some parentheses man
This solution is clearly wrong as can be seen by testing it with inputs
(1,2,3)
(expected0
, produces1
) and(1,-2,-3)
(expected0
, produces1
). Nevertheless, it passes the test suite every last time. Might I suggest adding an element of randomness into the testing so thatc
is not always1
or0
?