method BinarySearchTree.prototype.removeimport { BinarySearchTree } from "https://dotland.deno.dev/std@0.223.0/data_structures/mod.ts"; remove(value: T): booleanRemoves node value from the binary search tree if found. Returns true if found and removed. Parametersvalue: TReturnsboolean