forked from dnshi/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dean Shi
committed
Oct 9, 2017
1 parent
856b258
commit bc41b94
Showing
2 changed files
with
44 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,43 @@ | ||
// Source : https://leetcode.com/problems/binary-number-with-alternating-bits | ||
// Author : Dean Shi | ||
// Date : 2017-10-09 | ||
|
||
/*************************************************************************************** | ||
* | ||
* Given a positive integer, check whether it has alternating bits: namely, if | ||
* two adjacent bits will always have different values. | ||
* | ||
* Example 1: | ||
* Input: 5 | ||
* Output: True | ||
* Explanation: | ||
* The binary representation of 5 is: 101 | ||
* | ||
* Example 2: | ||
* Input: 7 | ||
* Output: False | ||
* Explanation: | ||
* The binary representation of 7 is: 111. | ||
* | ||
* Example 3: | ||
* Input: 11 | ||
* Output: False | ||
* Explanation: | ||
* The binary representation of 11 is: 1011. | ||
* | ||
* Example 4: | ||
* Input: 10 | ||
* Output: True | ||
* Explanation: | ||
* The binary representation of 10 is: 1010. | ||
* | ||
***************************************************************************************/ | ||
|
||
/** | ||
* @param {number} n | ||
* @return {boolean} | ||
*/ | ||
var hasAlternatingBits = function(n) { | ||
const m = n + (n >> 1) + 1 | ||
return (m & (m - 1)) === 0 | ||
}; |