Skip to content

Instantly share code, notes, and snippets.

@GAierken
Created November 20, 2020 01:55
Show Gist options
  • Save GAierken/6e15c82f5e3457fa2d16e29400e130aa to your computer and use it in GitHub Desktop.
Save GAierken/6e15c82f5e3457fa2d16e29400e130aa to your computer and use it in GitHub Desktop.
function ListNode(val, next) {
this.val = (val===undefined ? 0 : val)
this.next = (next===undefined ? null : next)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment