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.
thanks for your answer, very helpful
This was very confusing for me too. The array it gives you is minemap = [[True, True, True], [False, False, True], [True, True, True]]. Each new minemap item is going across and each new minemap[x] item is going down, if that makes sence. So it would look like this
True(minemap[0][0])--------------------------------------False(minemap[1][0])--------------------------------------True(minemap[2][0])--------------------------------------------------------------------------------
True(minemap[0][1])--------------------------------------False(minemap[1][1])--------------------------------------True(minemap[2][1])--------------------------------------------------------------------------------
True(minemap[0][2])--------------------------------------True(minemap[1][2])--------------------------------------True(minemap[2][2])--------------------------------------------------------------------------------
Just ignore how the minemap looks in the test arrays. Hopefully this helped.
Either the coordinates are totally messed up, or I'm missing a huge point of perspective. (I think it's the former)
In the sample test case, the last 3x3 mine_map is given as follows:
where 0 means empty cell, X means block.
Someone please make me understand how this makes sense.