An open API service indexing awesome lists of open source software.

https://github.com/bramirez96/customlinkedlistpython

Custom LinkedList class for a coding challenge provided by my TA. Written in Python.
https://github.com/bramirez96/customlinkedlistpython

Last synced: 9 months ago
JSON representation

Custom LinkedList class for a coding challenge provided by my TA. Written in Python.

Awesome Lists containing this project

README

          

# LinkedList and Node Classes

> Node is a required class to implement LinkedLists and should not be called on its own

Here's my take on a LinkedList, implemented in Python.

- JavaScript array method names are used to make it easier to understand
- .push(), like in javascript, can take multiple positional arguments and append them to the list