Rave Business Systems interview question

How to reverse a list.

Interview Answer

Anonymous

Jan 30, 2024

I use two pointers, one starting from the beginning of the list (start) and the other starting from the end of the list (end). They swap the elements at these positions iteratively until the pointers meet in the middle, effectively reversing the list in place.