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.
This comment is hidden because it contains spoiler information about the solution
There are no sample tests.
JS function name should be in camelCase, aka
Move
->move
.Shots can sometimes clip through terrain:
The kata's physics model is completely unphysical: it has no acceleration due to gravity, and instead the vertical velocity of the shot decreases by
50 / speed
each tick.The kata does not explain any information crucial to derive the result in the description. It doesn't even tell you you're supposed to calculate projectile motion. This is definitely unacceptable.
(Also, I'm pretty sure projectile motion is a duplicate)
In python && ruby, initial solution setup should not provide code as description does not mention or enforce the usage of stacks to solve the problem
Why are the tests still using
Test.expect
in 2016? It gives no feedback about the expected and actual value. They need to be rewritten withTest.assertEquals
and the likes.No random tests.
So, basically a
delegate
is aProxy
with anapply
handler of aSet
ofFunction
s ?( It feels weird that the delegate does not return a value. It's probably not very useful in functional programming that way. )
Tests on comparing number of arguments (function vs. delegate) can be improved
This comment is hidden because it contains spoiler information about the solution