Created
June 11, 2020 13:48
-
-
Save vamsitallapudi/096c0aa1283c872122bbc2d4f64c574a to your computer and use it in GitHub Desktop.
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 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