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.
👀
I had the same issue, but like gbhojraj pointed out making sure the original input gets unmodified it went away - thanks! :)
I believe this is an issue that only appears when you failed the "Input should not be modified" test. I solved that and it went away for me.
Anyone can help me on this ?
Hi there.
I had a lot of fun with this Kata, but I'm a bit stuck with one of the test : the one on Glider4.
It expects
â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘
â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘
â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘
â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘
â–‘â–‘â–‘â–‘â–“â–‘â–‘â–‘â–‘â–‘â–‘
â–‘â–‘â–‘â–‘â–‘â–“â–“â–‘â–‘â–‘â–‘
â–‘â–‘â–‘â–‘â–“â–“â–‘â–‘â–‘â–‘â–‘
â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘
â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘
â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘
â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘â–‘
But in the instructions, it's said that the result must be "cropped around all of the living cells".
I'm a bit frustrated because my implementation returned
â–“â–‘â–‘
â–‘â–“â–“
â–“â–“â–‘
which contains the expected living cells.
I'm not a native english speaker (as you probably already guess), and I may have misunderstood the instructions.
Thanks!
Very concise, I've never think to use splat in invokation to replace a concat.
You can avoid the dot when using @ : @.before is equivalent to @before
Hello ! you should give a comprehensive comment, I think this should be promoted to best practice.