Skip to content

Instantly share code, notes, and snippets.

@gjlmotea
Created April 3, 2020 05:10
Show Gist options
  • Save gjlmotea/ab82ff48dd1e2e60a2f9273eaa93ce63 to your computer and use it in GitHub Desktop.
Save gjlmotea/ab82ff48dd1e2e60a2f9273eaa93ce63 to your computer and use it in GitHub Desktop.
ListNode
class ListNode:
def __init__(self, x, ListNode = None):
self.val = x
self.next = ListNode
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment