
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Check if some elements of array are equal JavaScript
We have an array of numbers that have got some redundant entries, our job is to write a function that takes in the array and groups all the identical entries into one subarray and returns the new array thus formed.
For example −
//If the input array is: const arr = [1, 3, 3, 1]; //then the output should be: const output = [[1, 1], [3, 3]];
We will use a HashMap to keep a track of the elements already occurred and iterate over the array using a for loop, the code for this will be −
Example
const arr = [1, 3, 3, 1]; const groupArray = arr => { const map = {}; const group = []; for(let i = 0; i < arr.length; i++){ if(typeof map[arr[i]] === 'number'){ group[map[arr[i]]].push(arr[i]); } else { //the push method returns the new length of array //and the index of newly pushed element is length-1 map[arr[i]] = group.push([arr[i]])-1; } }; return group; } console.log(groupArray(arr));
Output
The output in the console will be −
[ [ 1, 1 ], [ 3, 3 ] ]
- Related Questions & Answers
- Python – Check if elements index are equal for list elements
- Check if array elements are consecutive in Python
- Are array of numbers equal - JavaScript
- Check if values of two arrays are the same/equal in JavaScript
- Python – Check if elements in a specific index are equal for list elements
- Python – Check if Splits are equal
- Check if all array elements are distinct in Python
- Check if elements of array can be made equal by multiplying given prime numbers in Python
- Check if all elements of the array are palindrome or nots in Python
- Check if all elements of the array are palindrome or not in Python
- How to check if some specific columns of an R data frame are equal to a column or not?
- Java Program to check if two dates are equal
- Check if two SortedSet objects are equal in C#
- Check if two BitArray objects are equal in C#
- Check if two ArrayList objects are equal in C#
Advertisements