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.
Nice
+
coersion.I concur, I was stuck on the nodegrade tests for a while before I read @docgunthrop's comment. (I probably should've realized that it was the obvious reason for 'nodegrade' to fail)
Same problem for Dart:
Expected: 'h(t) = -16.0t^2 + 17.88t + 51.0'
Actual: 'h(t) = -16.0t^2 + 17.880t + 51.0'
Which: is different.
Expected: ... ^2 + 17.88t + 51.0
Actual: ... ^2 + 17.880t + 51.0
^
Differ at offset 23
Javascipt (and maybe Dart)- It seems that either the tests are wrong or the example needs to be updated- should trailing 0s be included in formulas?
One of the test cases I failed in Javascript:
Expected: 'x(t) = 83.07t', instead got: 'x(t) = 83.070t'
Expected: 'h(t) = -16.0t^2 + 13.2t + 86.0', instead got: 'h(t) = -16.0t^2 + 13.200t + 86.0'
The instructions say:
EVERYTHING, including values in the equations appearing as coefficients, must be rounded to THREE decimal places. However, if the value is whole, only show one decimal place (for example => -16 becomes -16.0, not -16.000)
I believe this is an issue that only appears when you failed the "Input should not be modified" test. I solved that and it went away for me.
This comment is hidden because it contains spoiler information about the solution