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.
Actual and expected order is not consistent, sometimes they're ok and sometimes they're flipped. The right order is expected first, then actual. At least in sample tests.
From Voile's post below, that operation translates to this:
0 / 117 -> 0 / 89 -> 0
Actual and expected seems to be flipped on some tests.
It's been mentioned below by u-mulder
I believe there is something wrong with one of the tests for PHP or with the explanation. According to the example in the explanation every calculation should be resolved from left to right without taking into account the order of operations.
The following test doesn't seem to agree with this rule:
Following the logic from left to right it results in
1
, but the test expects-4
. Is the test wrong or am I wrong?Bonus points for naming:
Unraveller
and->unravel()
.I experienced this issue today. Are you sure it's fixed?