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.
Sorry, didn't get your point.
Sorry, I don't see any issues from these two functions, the answers to the Kata is quite open, you can pass the Kata very easily, but when you PK with others with a certain input, there will be a big gap.
what is n?
The idea is great, but kata needs to fix issues
Also, things like
function PDD(x) {return 0.00000000000000000000000000000000000000000000000000000000000001*x}
andPDD = x => 2.3283064376228985e-11 * x + 0.9499999999767169
shouldn't work. Hope this helpsDescription is not clear about what to do with n
optimized~
Random tests are only testing
0 < PDD(n) < 1
, which is too weak to be useful. You should at least testm < n => PDD(m) < PDD(n)
.replaced.
added.
There are no random tests.
C# initial code is completely unrelated to the kata.