-
Notifications
You must be signed in to change notification settings - Fork 7.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2116 from paditya99/master
Added CPP solution for LeetCode question of Power of Four
- Loading branch information
Showing
1 changed file
with
30 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,30 @@ | ||
class Solution { | ||
public: | ||
double value4(double d) | ||
{ | ||
return (log2(d))/2; | ||
} | ||
bool is_integer(float k) | ||
{ | ||
return std::floor(k) == k; | ||
} | ||
bool isPowerOfFour(int n) { | ||
if(n<=0){ | ||
return false; | ||
} | ||
if(n==1){ | ||
return true; | ||
} | ||
if(n%4!=0){ | ||
return false; | ||
} | ||
else{ | ||
if(is_integer(value4(n))){ | ||
return true; | ||
} | ||
else{ | ||
return false; | ||
} | ||
} | ||
} | ||
}; |