Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 846 Bytes

find_unique_elements_in_an_array.md

File metadata and controls

27 lines (18 loc) · 846 Bytes

Find Unique Elements in an Array

To find unique elements in an array, you can use a set to filter out duplicates.

Algorithm:

  1. Convert the array to a set, which automatically removes duplicates.
  2. Convert the set back to an array to get the unique elements.
  3. Return the unique array.

Example:

function findUnique(arr) {
    return [...new Set(arr)];
}

// Example usage
console.log(findUnique([1, 2, 2, 3, 4, 4])); // Output: [1, 2, 3, 4]
console.log(findUnique(["apple", "banana", "apple"])); // Output: ["apple", "banana"]

This method has a time complexity of O(n), where n is the length of the array.

Tags: basic, JavaScript, Arrays, Algorithm