Given an array of integers, modify the array in place to move all zeros to the end while maintaining the relative order of non-zero elements.
Input: nums = [0, 1, 0, 3, 2] Output: [1, 3, 2, 0, 0]