Two Pointers(slow fast pointer), sliding window, simulation
- https://leetcode.com/problems/squares-of-a-sorted-array/description/
- left right pointer, fill in from the end.
- https://leetcode.com/problems/spiral-matrix-ii/description/
- Simulation: 1.control loop range < n / 2; 2.fill in center val if n is odd.
- Sliding Window https://www.geeksforgeeks.org/window-sliding-technique/