Today, we will tackle two problems demonstrating how JavaScript Sets
can streamline your code and optimize performance. Sets
in JavaScript are a powerful way to handle collections of unique items, making them the ideal data structure for solving uniqueness and membership testing problems.
Let's begin by considering the function areDisjoint
, which takes two arrays and determines if they are disjoint, meaning they have no elements in common. This is crucial when analyzing datasets for overlapping values, similar to ensuring that two puzzle pieces from different puzzles don't fit together.
Think of two companies looking to cross-promote products but wishing to target customers who have yet to interact with both brands. Ensuring that their promotional efforts are disjoint becomes essential.
A naive approach would be to iterate over every element in the first array and, for each one, check every element in the second array for a match. This could be likened to standing at the junction of two busy streets and comparing every passerby on one side with every passerby on the other, looking for twins. The time cost grows prohibitively with the number of "passersby," making this method inefficient for larger datasets.
Consider a scenario with a list of names and a super-fast scanner that can immediately tell you whether a name is on the list. In JavaScript terms, this is what Sets
offer via their has
method — a way to check presence in constant time.
Let's build the solution, with this analogy in mind, step by step:
Set
called set1
..some()
method to check if set1
can find a match. The some() method tests whether at least one element in the set passes the test implemented by the provided function..some()
because it returns true
if it finds at least one match.JavaScript1// Defining the function areDisjoint 2function areDisjoint(array1, array2) { 3 const set1 = new Set(array1); 4 return !array2.some(element => set1.has(element)); 5} 6 7// Example calls to the function, highlighting the differences in arrays 8console.log(areDisjoint(['Alice', 'Bob', 'Charlie'], ['Xander', 'Yasmine', 'Zane'])); // true, no common names 9console.log(areDisjoint(['Alice', 'Bob', 'Charlie'], ['Charlie', 'Delta', 'Echo'])); // false, 'Charlie' is common to both
This code illustrates how Sets
can quickly indicate whether two lists share elements, producing true
for completely disjoint lists and false
otherwise.
Now, we move on to a common data-cleaning problem: removing duplicates from an array. Consider a librarian cataloging books; duplicates waste space and need clarification. Like the librarian, we want our array to contain unique entries.
The naive approach would involve creating a new list and adding only those items that aren't present, akin to checking each book against the entire catalog before shelving it. This method is impractical for a library of any considerable size due to its squared time complexity.
Let's consider the efficient approach. Enter JavaScript Sets
, which adhere to the principle that "each member is unique." By converting our array into a Set
, we automatically remove duplicates
Let's look at how we can neatly apply this in code:
Set
from our array. We had an assistant who automatically filtered out duplicate names from our lists.Set
, now containing unique names, back into an array, ready for use in our guest list system.JavaScript1// Defining the removeDuplicates function 2function removeDuplicates(array) { 3 return Array.from(new Set(array)); 4} 5 6console.log(removeDuplicates(['apple', 'apple', 'banana', 'banana', 'cherry'])); // ['apple', 'banana', 'cherry'] 7console.log(removeDuplicates([1, 5, 3, 5, 2, 2, 1])); // [1, 5, 3, 2]
These examples demonstrate how Sets
elegantly handle duplicate removal, producing arrays that succinctly represent the unique elements they originally contained.
In today's lesson, we've reinforced the power of JavaScript Sets
for solving common algorithmic problems efficiently. We've seen how Sets
can be used in two distinct scenarios: ensuring disjointness and eliminating duplicates, thus underscoring their versatility.
Let's continue to the practice exercises and witness these concepts in action!