Implementing balanced binary search tree (BST) from a sorted array in JavaScript, as part of The Odin Project's "Full Stack JavaScript" course
0
stars
0
forks
source link
implement level order traversal, applying callback function iteratively to each node #18
Closed
henrylin03 closed 3 months ago
implements iterative solution for #10
tests
setup in
index.mjs
. the callback function we will use to test simply logs to console the data (value) of the nodeoutput: matches expected behaviour