Problem
Ask
Submissions

Problem: Delete Nodes And Return Forest

Medium
30 min
Explore how to delete nodes with specific values from a binary tree and return the forest made of the remaining trees. Understand tree depth-first search and apply it to solve this common coding interview problem using Python.

Statement

Given the root of a binary tree where each node has a unique value, your task is to delete all nodes with values specified in the delete_nodes list. After performing the deletions, the tree will split into a forest—a collection of disjoint trees. Return the roots of the remaining trees in the forest in any order.

Constraints:

  • 00\leq nodes 100\leq100

  • 11\leq nodes.value 1000\leq 1000

  • 00\leq delete_nodes.length 100\leq 100

  • 11\leq delete_nodes[i] 1000\leq 1000

Note: Both nodes and delete_nodes[i] will have distinct values.

Problem
Ask
Submissions

Problem: Delete Nodes And Return Forest

Medium
30 min
Explore how to delete nodes with specific values from a binary tree and return the forest made of the remaining trees. Understand tree depth-first search and apply it to solve this common coding interview problem using Python.

Statement

Given the root of a binary tree where each node has a unique value, your task is to delete all nodes with values specified in the delete_nodes list. After performing the deletions, the tree will split into a forest—a collection of disjoint trees. Return the roots of the remaining trees in the forest in any order.

Constraints:

  • 00\leq nodes 100\leq100

  • 11\leq nodes.value 1000\leq 1000

  • 00\leq delete_nodes.length 100\leq 100

  • 11\leq delete_nodes[i] 1000\leq 1000

Note: Both nodes and delete_nodes[i] will have distinct values.