-
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
1 parent
0bdabe7
commit 863c80d
Showing
1 changed file
with
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
Given an integer, write a function to determine if it is a power of two. | ||
Example 1: | ||
Input: 1 | ||
Output: true | ||
Explanation: 20 = 1 | ||
*/ | ||
class Solution { | ||
public: | ||
bool isPowerOfTwo(int n) { | ||
if(n>0 && (n&(n-1))==0) | ||
return true; | ||
return false; | ||
} | ||
}; |