Question: In a singly linked list, how do you find the middle element?
Options:
Correct Answer: Use two pointers
Solution:
Using two pointers, where one moves twice as fast as the other, allows you to find the middle element in O(n) time.