Workday Interview Question

List reversal, in place.

Interview Answer

Anonymous

Nov 11, 2012

I assume that the list should be an ArrayList - Very similar to how you reverse a string basically you keep track of two counters and stop when one exceeds another.

2