-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsortByBits.js
More file actions
38 lines (29 loc) · 991 Bytes
/
sortByBits.js
File metadata and controls
38 lines (29 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*You are given an integer array arr. Sort the integers in the array in ascending order by the number of 1's in their binary representation and in case of two or more integers have the same number of 1's you have to sort them in ascending order.
Return the array after sorting it.
Example 1:
Input: arr = [0,1,2,3,4,5,6,7,8]
Output: [0,1,2,4,8,3,5,6,7]
Explantion: [0] is the only integer with 0 bits.
[1,2,4,8] all have 1 bit.
[3,5,6] have 2 bits.
[7] has 3 bits.
The sorted array by bits is [0,1,2,4,8,3,5,6,7]*/
function sortByBits(arr) {
let map = {}
for (let num of arr) {
let count = numberOfOnes(num)
map[num] = count
}
//sort by the number of ones
return arr.sort((a, b) => map[a] - map[b] || a - b)
}
function numberOfOnes(num) {
let count = 0
while (num > 0) {
count = count + (num & 1)
num = num >> 1
}
return count
}
console.log(sortByBits([0, 1, 2, 3, 4, 5, 6, 7, 8])) // [0,1,2,4,8,3,5,6,7]
// skuska