Public
Edited
Jun 14, 2023
Importers
Insert cell
Insert cell
function Tree(val, left = null, right = null) {
this.val = val;
this.left = left;
this.right = right;
}
Insert cell
Insert cell
Insert cell
createBinaryTreeFromArray([1, 7, 9, 2, 6, null, 9, null, null, 5, 11, 5, null])
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more