1. int[][] board = new int[][] {{1,0,0},{0,1,0},{1,2,1}}
please explain how we have used index here....like row and column....i know about this we have an array, a, with two rows and four columns.
int[][] a = new int[2][4];
// Two rows and four columns.
but what about the 1. as in that we don't have actual index provided....what will be the index in that.....