Binary Tree Cameras
trees
Given a binary tree, we install cameras on nodes of the tree.
The camera on a node can monitor it's parent, itself, and any immediate children
Find the minimum number of cameras to be installed in a given binary tree such that each node is monitored.
Example 1:
Input: [0,0,null,0,0]...