Cyclic Linked List – Python function to find the node at the start of the loop
Sunday, July 18th, 2010I'd blogged previously about writing a python function to find out whether a linked list is acyclic or not - it's worth a read before tackling this one. Problem: Given the head node of a cyclic (or circular) linked list, write a function to return the node that is at ...