Now further on my journey into trying to become a self-taught software engineer, I tackled linked lists. They're my first data structure outside of arrays that I've tackled, and I had no experience ...
A linked list in Python is a type of linear data structure that is similar to arrays. It is a collection of nodes that are linked with each other. Linked lists are an ordered collection of objects.