143. Reorder List
Quite an intriguing problem. Initially, I thought this solution would require extra storage to store some ListNodes as the order is L0 -> Ln -> L1 -> L(n-1)… I played around with some examples and observed the following pattern: First element -> last element -> second element -> second last element … Initial Observations: Ex1: [] -> No reordering as the list is empty. Ex2: [1] -> No reordering as there is only one element....