nathan brickettFollowOct 25, 2020·2 min readBinary Search Tree — Delete A NodeToday we will be looking at the problem of Deleting a Node in a BST.After reading the question it seems like a clear opportunity to use a dfs function to help us solve this.Here is an example input:And here is the final code!