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.
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.Python new test framework should be used (Refer this & this for more detail)
Ruby 3.0 should be enabled (Refer this & this for more detail)
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