Skip to content

Commit

Permalink
Create PowerofTwo.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
priyavelu7 authored Jun 10, 2020
1 parent 0bdabe7 commit 863c80d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Week 2/PowerofTwo.cpp
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;
}
};

0 comments on commit 863c80d

Please sign in to comment.