1110. Delete Nodes And Return Forest
Previous1109. Corporate Flight BookingsNext1111. Maximum Nesting Depth of Two Valid Parentheses Strings
Last updated
Last updated
**Input:** root = [1,2,3,4,5,6,7], to\_delete = [3,5]
**Output:** [[1,2,null,4],[6],[7]]**Input:** root = [1,2,4,null,3], to\_delete = [3]
**Output:** [[1,2,4]]