Skip to content

Instantly share code, notes, and snippets.

View ihesvm's full-sized avatar
😁
Working from home

hesam mostafavi ihesvm

😁
Working from home
View GitHub Profile
@ihesvm
ihesvm / linkedlist.py
Created July 22, 2023 10:33
linked list in python example code
class Node:
def __init__(self, data):
self.data = data
self.next = None
class LinkedList(object):
def __init__(self):
self.head = None