Answers for "remove duplicates from array without sorting cpp"

3

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;
}
Posted by: Guest on June-18-2020
0

remove duplicates from sorted array

def remove_duplicate(nums: [int]) -> int:
  nums[:] = sorted(set(nums))
  return len(nums)
Posted by: Guest on December-29-2020

Code answers related to "remove duplicates from array without sorting cpp"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language