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.
No worries, it happens to everyone at some point!
Are you sure that the
0 should equal 1
isn't referencing the test above the one that you're talking about? The input for that test is[1,0,0]
and the correct answer for that test is indeed1
.The
x should equal y
will appear below the log for any test that you fail, not above it.That particular test case is a fixed one, and not random. I can confirm that this test actually expects
0
to be returned, and not1
. Is it possible you're reading the test result incorrectly? I checked in python, not sure about the other languages. Python also has almost 42,000 solves, so I'm guessing the problem isn't with the tests.