MCPcopy Create free account
hub / github.com/betomoedano/JavaScript-Coding-Interview-Questions /

Class

binary-trees/min-heigth-bst.js:16–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14}
15
16class BST {
17 constructor(value) {
18 this.value = value;
19 this.left = null;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected