Remove Duplicate 2016-07-15 algorithm Write a function to return an array that duplicate primitive values are removed inexample:removeDuplicate([1, 3, 3, 3, 1, 5, 6, 7, 8, 1]);// [1, 3, 5, 6, 7, 8] Newer Merge two sorted arrays Older Greatest Common Divisor