Skip to content

Instantly share code, notes, and snippets.

@vamsitallapudi
Created June 11, 2020 13:48
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 vamsitallapudi/096c0aa1283c872122bbc2d4f64c574a to your computer and use it in GitHub Desktop.
Save vamsitallapudi/096c0aa1283c872122bbc2d4f64c574a to your computer and use it in GitHub Desktop.
class Node:
def __init__(self, data):
self.data = data # assigning the data passed
self.next = None # initializing the node as null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment