Skip to content

Instantly share code, notes, and snippets.

View Ruthmy's full-sized avatar

Ruth Abreu Ruthmy

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 () {
@gokulkrishh
gokulkrishh / media-query.css
Last active May 17, 2024 04:45
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* CSS */