Given an integer, write a function to determine if it is a power of two.
ALSO CHECK: Other LeetCode Solutions in Java
-K Himaanshu Shuklaa.
Example 1:
Input: 1 Output: true Explanation: 20 = 1
Input: 16 Output: true Explanation: 24 = 16
Example 3:
Input: 218 Output: falseGIT URL: Java Solution of Leet Code's Power of Two problem
ALSO CHECK: Other LeetCode Solutions in Java
-K Himaanshu Shuklaa.
No comments:
Post a Comment