Merge pull request #262 from williamfzc/master

function '__init__' miss a 'i'
This commit is contained in:
Harshil 2018-03-07 14:42:40 +05:30 committed by GitHub
commit fecba12dd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@ from __future__ import print_function
class Node: # create a Node class Node: # create a Node
def __int__(self, data): def __init__(self, data):
self.data = data # given data self.data = data # given data
self.next = None # given next to None self.next = None # given next to None