Model answer
Delete a leaf by clearing its parent link; delete a one-child node by linking its parent directly to the child; for two children, replace the key with the inorder successor (minimum in the right subtree) and delete that successor, which has at most one child.
Use the key terms, then explain the reasoning.