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.
a = [[2, 0, 0, 1, 0],
[0, 0, 0, 1, 0],
[0, 0, 0, 0, 0]]
b = [[0, 2, 0, 0, 1],
[0, 0, 0, 0, 1],
[0, 0, 0, 0, 1],
[0, 0, 0, 0, 0]]
['R3', 'D3']
c = [[1, 0, 0, 0, 2],
[0, 0, 0, 0, 1],
[1, 0, 0, 0, 0],
[0, 0, 0, 0, 0]]
['L4', 'D1', 'R4', 'D1', 'L4', 'D1', 'R4']
br0! yours just fine, see my much more stupid solution you will be shocked as I did
Hi!
I just facing same problem as yours, and here is the reason and how you fix it:
The problem expected you return the int value instead of just print the value out. In this case, you need to convert Nontype datetype to integer datatype to pass the test.
Best regards,