0558. Logical OR of Two Binary Grids Represented as Quad-Trees
Description
class Node {
public boolean val;
public boolean isLeaf;
public Node topLeft;
public Node topRight;
public Node bottomLeft;
public Node bottomRight;
}

ac
Last updated
