Skip to content

Commit

Permalink
Add BinaryNumberWithAlternatingBits
Browse files Browse the repository at this point in the history
  • Loading branch information
Dean Shi committed Oct 9, 2017
1 parent 856b258 commit bc41b94
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

| # | Title | Solution | Difficulty |
|---| ----- | -------- | ---------- |
|693|[Binary Number with Alternating Bits](https://leetcode.com/problems/binary-number-with-alternating-bits)|[JavaScript](./algorithms/BinaryNumberWithAlternatingBits.js)|Easy|
|682|[Baseball Game](https://leetcode.com/problems/baseball-game)|[JavaScript](algorithms/BaseballGame.js)|Easy|
|680|[Valid Palindrome II](https://leetcode.com/problems/valid-palindrome-ii)|[JavaScript](./algorithms/ValidPalindrome_II.js)|Easy|
|678|[Valid Parenthesis String](https://leetcode.com/problems/valid-parenthesis-string)|[JavaScript](./algorithms/ValidParenthesisString.js)|Medium|
Expand Down
43 changes: 43 additions & 0 deletions algorithms/BinaryNumberWithAlternatingBits.js
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
};

0 comments on commit bc41b94

Please sign in to comment.