Remove Node From Bst
medium
1. You are given a partially written BST class. 2. You are required to complete the body of remove function. "remove" function is expected to remove a new node with given data to the tree and return the new root. 3. Input and Output is managed for you. Note -> Please watch the question video to figure out the algorithm required for deletion. It specifies some requirements of the question as well.
Constraints
None
Format
Input
Input is managed for you
Output
Output is managed for you
Example
Sample Input
15
50 25 12 n n 37 n n 75 62 n n 87 n n
62
Sample Output
25
Question Video