Good afternoon all!
I have this program in Python that is really starting to make my head go crazy. It utilizes linked lists (circularly linked list).
Now, correct me if I am wrong, but a circular linked list works like this: (the number on the left represents the number of lists)
o - (Header is empty class)
1 - header.next = first element (call this EL1)
EL1.next = EL1
...