<?xml version="1.0" encoding="UTF-8"?><oembed><type>video</type><version>1.0</version><html>&lt;iframe src=&quot;https://www.loom.com/embed/bdeb7cd0106a40548ad75a737c18855d&quot; frameborder=&quot;0&quot; width=&quot;1152&quot; height=&quot;864&quot; webkitallowfullscreen mozallowfullscreen allowfullscreen&gt;&lt;/iframe&gt;</html><height>864</height><width>1152</width><provider_name>Loom</provider_name><provider_url>https://www.loom.com</provider_url><thumbnail_height>864</thumbnail_height><thumbnail_width>1152</thumbnail_width><thumbnail_url>https://cdn.loom.com/sessions/thumbnails/bdeb7cd0106a40548ad75a737c18855d-1710603031239.gif</thumbnail_url><duration>273.73</duration><title>Intro to BST </title><description>// SOURCE CODE

function BST(value) {
	this.value = value;
	this.right = null;
	this.left = null;
}

BST.prototype.insert = function (value) {
	if (value  this.value) {
		if (!this.right) this.right = new BST(value);
		else this.right.insert(value);
	}
};</description></oembed>