method BinarySearchTree.prototype.removeNodeimport { BinarySearchTree } from "https://dotland.deno.dev/std@0.223.0/data_structures/mod.ts"; removeNode(node: BinarySearchNode<T>): BinarySearchNode<T> | nullRemoves the given node, and returns the node that was physically removed from the tree. Parametersnode: BinarySearchNode<T>ReturnsBinarySearchNode<T> | null