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.
- Host: GitHub
- URL: https://github.com/bramirez96/customlinkedlistpython
- Owner: bramirez96
- Created: 2020-07-14T00:48:53.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-14T00:52:36.000Z (over 5 years ago)
- Last Synced: 2025-02-08T17:41:34.845Z (11 months ago)
- Language: Python
- Size: 1.95 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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