Skip to content

Instantly share code, notes, and snippets.

@GAierken
Created October 9, 2020 01:21
Show Gist options
  • Save GAierken/6f9b0d8049a41829f5601af3b883dc23 to your computer and use it in GitHub Desktop.
Save GAierken/6f9b0d8049a41829f5601af3b883dc23 to your computer and use it in GitHub Desktop.
class Node{
constructor(val,children){
this.val = val // integer
this.children = children // array
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment