Description Given an array of integers, remove the duplicate numbers in it. You should: Do it in place in the array. Move the unique numbers to the front of the array. Return the total number of the unique numbers. Example 1: Input: nums = [1,3,1,4,4…