diff --git a/Add_two_Linked_List.py b/Add_two_Linked_List.py index 9ed2764681d..97d10a1011b 100644 --- a/Add_two_Linked_List.py +++ b/Add_two_Linked_List.py @@ -39,7 +39,6 @@ def add_two_no(self, first, second): if carry > 0: temp.next = Node(carry) - def __str__(self): temp = self.head while temp: