TreeNode[] children = grid[row][col].getChildren();
I would like a simple function that can tell me how many objects are in this array? getChildren() will return an object of size no larger than 4, for example:
children[0] = null;
children[1] = TreeNode Object
children[2] = null;
children[3] = null;
Why don’t you write it yourself: