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.
@matrixersp you're checking out of bounds on the array :-)
maze[start[0]][start[1]] === 1
where eitherstart[0]
orstart[1]
is < 0 or > maze lengthI have the same issue (JavaScript), all my tests pass and I'm checking if the move is out of bounds.
I've the same problem :(
Hi there. Your code is not checking if the move is out of bounds of the maze
Hi, just curious, but what exactly is the
undefined
object for which the property3
cannot be read? (because this produces the error) I have not done this kata in JS, but it seems like you're trying to find the number 3 in something that can't or doesn't contain the numebr 3 . . . could that be the case?