Answers for "given two arrays remove duplicate from them"

1

completely remove duplicate element from the array

var array = [1, 2, 3, 4, 4, 5, 5],
    result = array.filter(function (v, _, a) {
        return a.indexOf(v) === a.lastIndexOf(v);
    });

console.log(result); // [1, 2, 3]
Posted by: Guest on March-29-2022
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

Code answers related to "given two arrays remove duplicate from them"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language