Loading...
Given a list L: L0 → L1 → … → Ln-1 → Ln, reorder it to: L0 → Ln → L1 → Ln-1 → L2 → Ln-2 → …
Output the reordered list as space-separated values.
1,2,3,4
1 4 2 3
1, 2 and the second half in reverse order is 4, 3.1 from the first half, 4 from the second half, 2 from the first half, and 3 from the second half.1 4 2 3.