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.
Okay but still it's an bad kata as the attemps don't show any empty string to try. So how would you know what is wrong.
This comment is hidden because it contains spoiler information about the solution
Thanks!
This comment is hidden because it contains spoiler information about the solution
Thanks!
First it didn't even work with reset. After some time I checked again, then it worked.
I gave up and paste the solution from solution, still show STDERR. what to do?
/workspace/node/test.js:32
};
^
SyntaxError: missing ) after argument list
at wrapSafe (internal/modules/cjs/loader.js:1001:16)
at Module._compile
i am getting STDERR: every time with different approach. Can anyone help?
not using ==/=== blew my mind. didn't get it at first. very clever.
I missed the point of imaging the dead cells. Thank you so much for taking time to explain it. Means a lot. Now I understood the problem properly.
yes, I didn't understand and that's why I requested to explain.
your answer could be, 'you won't'. thanks anyway
can anyone explain this please, For instance, the answer of [ [ 1, 0, 0 ], [ 0, 1, 1 ], [ 1, 1, 0 ] ] this one would be [ [ 0, 1, 0 ], [ 0, 0, 1 ], [ 1, 1, 1 ] ]. this is for the first generation. second generation answer would be [[0,0,0],[1,0,1], [0,1,1]]. if null row is deleted then remains [[1,0,1], [0,1,1]]
But the answer shows [[1,0,1], [0,1,1], [0,1,0]] the last 0,1,0 > where does it come from?
can you explain something please,
For instance, the answer of [ [ 1, 0, 0 ], [ 0, 1, 1 ], [ 1, 1, 0 ] ] this one would be [ [ 0, 1, 0 ], [ 0, 0, 1 ], [ 1, 1, 1 ] ].
this is for the first generation.
second generation answer would be [[1,0,1], [0,1,1], [0,1,0]]
the last 0,1,0 > where does it come from?
can you please explain the part of removing null row/collumn, still getting the same size?
Loading more items...