Created
April 3, 2020 05:10
-
-
Save gjlmotea/ab82ff48dd1e2e60a2f9273eaa93ce63 to your computer and use it in GitHub Desktop.
ListNode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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