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.
Fixed.
I had this problem as well — it happens if you initialise all registers. If you don't, it works. Don't know why Assert::That produces this funny output.
Pay a lot of attention to constant/register situations. Make sure you cover them all.
there can be some faults in your algorithm, I have solved it by checking the description and rewriting the codes about JNZ. I just misunderstood the meaning of jnz. Hope helpful.
Same thing, I have 8s runtime, but none complex tests passed. It seems this issue will never be fixed as one can find this kind of reports in a lot of katas in relation to C++ solutions.
In this case it seems even the type in Equals that is created by the test itself fails.
In C++, I've been getting weird timeout issues, and after further optimization I got this instead:
Complex1
Expected: equal to [unsupported type]
Actual: [unsupported type]
Complex2
Expected: equal to [unsupported type]
Actual: [unsupported type]
Complex3
Expected: equal to [unsupported type]
Actual: [unsupported type]
This doesn't tell me anything, and I haven't detected an error in my algorithm.
I just solved this Kata in Java without any issues so I assume it's fixed?
Yep
why make the small reference though? did you just forget to use it? ahahah
Same issue as matthewmoppett...
The java testing is very buggy.
Time: 0ms Passed: 0 Failed: 7
Test Results:
test0
✘ expected: java.util.HashMap<{13=1}> but was: java.util.HashMap<{13=1}>
test1
✘ expected: java.util.HashMap<{2=3, 3=1}> but was: java.util.HashMap<{2=3, 3=1}>
test2
✘ expected: java.util.HashMap<{7=3}> but was: java.util.HashMap<{7=3}>
test3
✘ expected:<{7=1, 31=1, 151=1}> but was:<{7=1, 151=1, 31=1}>
test4
✘ expected: java.util.HashMap<{101=1, 3541=1, 27961=1}> but was: java.util.HashMap<{101=1, 3541=1, 27961=1}>
test5
✘ expected:<{104729=1, 104723=1}> but was:<{104723=1, 104729=1}>
test6
✘ expected:<{268435399=1, 268435367=1}> but was:<{268435367=1, 268435399=1}>