classSolution{publicTreeNodedeleteNode(TreeNode root,int key){if(root ==null)return root;if(root.val < key){
root.right =deleteNode(root.right, key);}elseif(root.val > key){
root.left =deleteNode(root.left, key);}else{// Found the value// When only 1 child, just delete the current nodeif(root.left ==null){return root.right;}elseif(root.right ==null){return root.left;}// Find the min value of the right subtree(since the parent is smaller than its right children) and put it in the parentTreeNode cur = root.right;// Keep going to the left child of the right subtree(smallest number)while(cur.left !=null){
cur = cur.left;}// Change the current value to the smallest of the right subtree
root.val = cur.val;// Delete the current(original) value
root.right =deleteNode(root.right, root.val);}return root;}}