Find the level whose next level has the most nodes. If there is no next level, treat prolificness as 0.
1
0
2
1
3
2
4
3
5
4
levelCount={ 0, 1, 2 }
Step 1 / 3
Step 1:
Level-order traversal to count nodes at each depth.
Focus: select @ [0]
Find the level whose next level has the most nodes. If there is no next level, treat prolificness as 0.