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.
let's code and play AoE. it's ok. Good luck
loll
This comment is hidden because it contains spoiler information about the solution
Nicely done!
Good!
This comment is hidden because it contains spoiler information about the solution
witchcraft lol regex is a dark art
Good!
That site is fantastic. I started learning regex from there.
This comment is hidden because it contains spoiler information about the solution
Top !
Thanks
This comment is hidden because it contains spoiler information about the solution
No. This test case means that you also need to handle closures properly, i.e you shouldn't just create a new function and call it; you need to call the original function.
Even if you passed this test case, there are more tests that plays with closure. For example, this is the test after the above test case:
What is the expected behavior of this test case? return NaN or throw exception?
It should be
var timesFive = function (x) { var five = 5; return function (a) { return five * x; }(x); };
. The test case is incorrect.Loading more items...