Your function should return length = 5, with the first five elements of nums being 1, 1, 2, 2 and 3 respectively. code example
Example: remove duplicates from sorted array
// Java
public int removeDuplicates(int[] nums) {
if (nums.length == 0) return 0;
int i = 0;
for (int j = 1; j < nums.length; j++) {
if (nums[j] != nums[i]) {
i++;
nums[i] = nums[j];
}
}
return i + 1;
}