Skip to content

Instantly share code, notes, and snippets.

View davidjsalazarmoreno's full-sized avatar
🔥
Creating

David Salazar davidjsalazarmoreno

🔥
Creating
View GitHub Profile
/**
* Definition for a binary tree node.
* class TreeNode {
* val: number
* left: TreeNode | null
* right: TreeNode | null
* constructor(val?: number, left?: TreeNode | null, right?: TreeNode | null) {
* this.val = (val===undefined ? 0 : val)
* this.left = (left===undefined ? null : left)
* this.right = (right===undefined ? null : right)