Skip to content

Instantly share code, notes, and snippets.

View Ruthmy's full-sized avatar

Ruth Abreu Ruthmy

View GitHub Profile
@Ruthmy
Ruthmy / binary-tree.js
Created August 27, 2023 21:25 — forked from rodrwan/binary-tree.js
Implementación árbol binario en JavaScript
class Node {
constructor (value) {
this.value = value
this.right = null
this.left = null
}
}
class Tree {
constructor () {