Skip to content

Instantly share code, notes, and snippets.

View Marcos-Antoni's full-sized avatar

marcob-dev Marcos-Antoni

  • Cavai
  • nueva san rosa
View GitHub Profile
@rodrwan
rodrwan / binary-tree.js
Last active February 11, 2024 15:14
Implementación árbol binario en JavaScript
class Node {
constructor (value) {
this.value = value
this.right = null
this.left = null
}
}
class Tree {
constructor () {