We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
in
The text was updated successfully, but these errors were encountered:
#1 Linked List is an Iterable
1128e31
#1 removes if to use more polymorphism
817a68a
No branches or pull requests
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:The text was updated successfully, but these errors were encountered: