You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some methods which are common to all the child classes of LinkedList aren't defined as abstract methods in the superclass itself. To fix this issue such methods should be added.
See the following template,
defname_of_abstract_method(self, arg1, arg2, ..., argn):
raiseNotImplementedError("This is an abstract method")
If you will go through other files such methods are pretty common to locate.