72.Power of Four Description Given an integer (signed 32 bits), write a function to check whether it is a power of 4. Example1 Input: 16 Output: true Example2 Input: 8 Output: false From LeetCode