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 think this is relevant to this issue that I just noticed.
In the expression below, I believe the multiplication is being handled before the division, even though the division is to the left of the multiplication. (I feel like we are expected to think of pemdas as p-e-m-d-a-s instead of p-e-md-as, but this is not how tings posa werk...)
The following is untrue in Ruby because of INTEGER DIVISION:
Expected: '2 / (2 + 3) * 4.33 - -6' to be 7.732 but got 6.0 - Expected: 7.732, instead got: 6.0
PROOF:
2 / (2 + 3) -> 0
0 * 4.33 -> 0.0
0.0 - -6 -> 6.0
!!! Bug preventing me from completing kata correctly !!!
The following is untrue in Ruby because of INTEGER DIVISION:
Expected: '2 / (2 + 3) * 4.33 - -6' to be 7.732 but got 6.0 - Expected: 7.732, instead got: 6.0
PROOF:
2 / (2 + 3) -> 0
0 * 4.33 -> 0.0
0.0 - -6 -> 6.0