Implement a Linked List following python's data model interfaces
The class must use type hint by implementing the following interfaces:
The list object must provide the following methods:
The sequence should also implement addition (meaning concatenation) and multiplication (meaning repetition) by defining the methods
The sequence should allow the use of the in operator by implementing the method:
Implement a Linked List following python's data model interfaces
The class must use type hint by implementing the following interfaces:
The list object must provide the following methods:
The sequence should also implement addition (meaning concatenation) and multiplication (meaning repetition) by defining the methods
The sequence should allow the use of the
inoperator by implementing the method: