Skip to content

Commit 35d6616

Browse files
committed
removed comments
1 parent dc0df81 commit 35d6616

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

linked_list/linked_list.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,5 @@
11
# linked list
22

3-
# In C language, we will use struct to create a node
4-
# struct node
5-
# {
6-
# int data;
7-
# struct node* Next;
8-
# };
9-
10-
# In python, we use classes
11-
# creates a node
123
class Node:
134
def __init__(self, data):
145
self.data = data

0 commit comments

Comments
 (0)