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.
Okay, so what should the power factor be when
S = 0
then...?But the kata tells us to use a sub-function which rounds by 4 decimal places. This means a power factor of
0.84999
will be considered not below0.85
, even though it shouldn't.But then,
calculate_power_factor
is not tested anyway, so why are we rounding in the first place? Is testingP/S < 0.85
so complicated?