UNPKG

algorithmpool

Version:
11 lines (10 loc) 191 B
export class Node { constructor(key) { this.key = key; this.left = undefined; this.right = undefined; } toString() { return `${this.key}`; } }