The Odin Project - Balanced Binary Search Tree Assignment

All the magic is in the console.

The console will initially show the "pretty printed" results of:

window.tree = new Tree(randArrBelow100(23)); // randArrBelow100(count) returns `count` numbers below 100

The provided array of numbers will have duplicate numbers removed (as per the assignment spec).


Create a new Balanced Binary Search Tree with:

new Tree([number, number, .... ]);

And see the results "pretty printed" in the console by calling

Tree.prettyPrint();

Other available functions for the `Tree` class