Skip to content

Instantly share code, notes, and snippets.

View ajharry69's full-sized avatar
🏠
Working from home

Orinda Harrison(Mitch) ajharry69

🏠
Working from home
View GitHub Profile
@ajharry69
ajharry69 / gist:6366ee4250f30a2b2c4218b3b3f0f1ff
Created October 8, 2017 22:34 — forked from ptigas/gist:2820165
linked list implementation in python
class Node :
def __init__( self, data ) :
self.data = data
self.next = None
self.prev = None
class LinkedList :
def __init__( self ) :
self.head = None