We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 95a5331 + c975cac commit fecba12Copy full SHA for fecba12
data_structures/LinkedList/singly_LinkedList.py
@@ -2,7 +2,7 @@
2
3
4
class Node: # create a Node
5
- def __int__(self, data):
+ def __init__(self, data):
6
self.data = data # given data
7
self.next = None # given next to None
8
0 commit comments