UNPKG

ds-algo-study

Version:

Just experimenting with publishing a package

12 lines (10 loc) 134 B
class TreeNode { constructor(val) { this.val = val; this.left = null; this.right = null; } } module.exports = { TreeNode };