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.
I found the login, the password and the token together in the log file, but it sais "Wrong token"
Am I missing something, or is this a bug?
Sorry for answering late; if you're still having issues with the kata, false positives and false negatives are numbers that are not multiple of 3 but reported as such (false positives), or, numbers that are indeed multiples of 3 but not reported as such (false negatives).
Either way, if you're having issues with those, consider making a loop within a range i.e. 1 to 1000, and for each one of them (let's call them
i
), convert it to binary, and make sure that is recognized by the regex only if it's multiple of 3 (i % 3 == 0
), nothing more, nothing less.You might discover that maybe some numbers are falsely reported, or are missed when they should have been reported - a.k.a false positives and false negatives.
Hi,
I think that I solved the kata, but the last test always fails and I'm not quite sure why.
Neither the test name "testFalsePositivesAndNegatives" nor the error message "Failed asserting that true is false." makes sense to me.
Could someone tell me what does the last test check?