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.
What is the expectation of the mentioned example in the description: ((a != b) > c != d) < e < f
Let's assume a,b,c,d,e,f distinct numbers greater than 1. Should then (a != b) be true, (true (1) > c) be false, (false (0) != d) be true, (true (1) < e) be true ?
Then (under the given assumptions) the expression would break down to (e < f)
I feel like I'm failing at the random tests that use the != operator. So I'm wondering if my assumption above is correct.
Thank you for your answer!
My bad. I was not aware that a test is actually a test group. Can I delete this somehow, such that it is not listed under issues any longer?
C++ 14:
First, I had a bug such that test case 6 failed, saying expected 45001, actual -1.
When I fixed the bug, test case 6 failed again, saying expected -1, actual 45001.
Am I doing something wrong or is this a bug in the testcase?