| 1 | class BST { |
| 2 | constructor(value) { |
| 3 | this.value = value; |
| 4 | this.left = null; |
| 5 | this.right = null; |
| 6 | } |
| 7 | } |
| 8 | |
| 9 | function validateBst(tree) { |
| 10 | return validateBstHelper(tree, -Infinity, Infinity); |
nothing calls this directly
no outgoing calls
no test coverage detected