Skip to content
Advertisement

Why can’t i generate this 10×10 2D array?

I am trying to generate this 2D Array maze 10 by 10 with numbers 0-9 in each row for 10 rows, but I keep getting array out of bounds exception. I double checked my indexes and the loop format and everything looks standard.

JavaScript

What is going on here? Why am I getting the out of bounds exception?

Advertisement

Answer

When you declare cell, N and M are 0. Change it to something like

JavaScript

And in generate, this

JavaScript

should be

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement