Medium
For each node, consider the subtree rooted at it. Count the nodes whose value equals the average (rounded down) of all values in that subtree.
Input: root = [4,8,5,0,1,null,6] Output: 5
Input: root = [1] Output: 1