Skip to content

Instantly share code, notes, and snippets.

View idiglove's full-sized avatar

Faith Morante idiglove

View GitHub Profile
@idiglove
idiglove / printBinaryTree.js
Created January 26, 2024 04:38
cassidoo algo practice - Write a data structure for a simple binary tree, and a function that prints a given tree.
class Node {
value = null;
left = null;
right = null;
constructor(value) {
this.value = value;
}