Skip to content

Commit

Permalink
Simple Singly Linked List
Browse files Browse the repository at this point in the history
  • Loading branch information
albertmundu authored Sep 4, 2016
1 parent 5fb2010 commit 4db4ed8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions linkedlist.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
'''
@Description: Simple Singly Linked List implementation in python
@Author: Albert Mundu
'''

class Node(object):
def __init__(self,data=None,next_node=None):
self.data=data
Expand Down

0 comments on commit 4db4ed8

Please sign in to comment.