Linked Lists/Python
From charlesreid1
Basic linked list implementation with Python: https://charlesreid1.com:3000/cs/python/src/master/lists/linked-lists/LinkedList.py
Questions that arose from this:
- Constructor overloading
- Effectively handling exceptions? (best practices)
- Class organization, protection, etc.? (Node class - private? shared? how?)