Skip to content

Instantly share code, notes, and snippets.

@alexnikol
Created August 9, 2020 16:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexnikol/2b95f6e3ea1cb8b5203dca50581ca66c to your computer and use it in GitHub Desktop.
Save alexnikol/2b95f6e3ea1cb8b5203dca50581ca66c to your computer and use it in GitHub Desktop.
Linked List Node realisation
"""Linked List Realization"""
class SinglyLinkedListNode:
def __init__(self, node_data):
self.data = node_data
self.next = None
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment