LeetCode: https://leetcode.com/problems/reorder-list/
Reorder a list from L0 -> L1 -> ... -> Ln to L0 -> Ln -> L1 -> Ln-1 -> ....
1
0
2
1
slow
3
2
4
3
fast
5
4
Step 1 / 3
Step 1:
Find the midpoint with slow/fast pointers.
Pointers: fast=4, slow=2
Focus: select @ [2]