-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Leetcode: 1356 sort integers by the number of 1 bits
- Loading branch information
1 parent
e6a4105
commit 92a6e23
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/** | ||
* Note: assumes numbers are positive. The used binary conversion method | ||
* doesn't work properly for negative numbers due to how JS represents them. | ||
* @param {number[]} arr | ||
* @return {number[]} | ||
*/ | ||
const sortByBits = (arr) => { | ||
return arr.sort((a, b) => { | ||
const aPositiveBits = a.toString(2).split('1').length - 1; | ||
const bPositiveBits = b.toString(2).split('1').length - 1; | ||
if (aPositiveBits === bPositiveBits) { | ||
return a - b; | ||
} else { | ||
return aPositiveBits - bPositiveBits; | ||
} | ||
}); | ||
} |