Capital One Interview Question

Remove the leaves of a binary tree.

Interview Answer

Anonymous

Jan 22, 2022

You traverse through the tree with either DFS or BFS. When you a None in the node.right and node.left, you can change the node value to None. In a sense, this removes the leaf node from the tree.