Given an integer array nums, move all 0's to the end of it while maintaining the relative order of the non-zero elements.
Note that you must do this in-place without making a copy of the array.
nums = [0,1,0,3,12][1,3,12,0,0]nums = [0][0]1 <= nums.length <= 10^4-2^31 <= nums[i] <= 2^31 - 1Click "Run" to execute your code against test cases
Socratic guidance - I'll ask questions, not give answers