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.
my code work properly in my my local device but its not working in kata what should i do now??
It's not exactly clear, but it lloks like the description uses exact decial values, so this test is incorrect:
test.assert_equals(e12_series(1.1), 1)
The literal
1.1
represents the fraction2476979795053773 / 2251799813685248
(≈1.10000000000000009
), which is greater than decimal1.1
and should be expected to be rounded to1.2
.Sample tests are not using
describe
andit
blocks.Test framework and solution should be imported explicitly.
And what does "normalized n" mean?