Pergunta de entrevista da empresa Capital One

Remove the leaves of a binary tree.

Resposta da entrevista

Sigiloso

22 de jan. de 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.