We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fc0319 commit 2c8e8afCopy full SHA for 2c8e8af
src/main/java/com/fishercoder/solutions/_342.java
@@ -1,20 +1,5 @@
1
package com.fishercoder.solutions;
2
3
-/**
4
- * 342. Power of Four
5
- *
6
- * Given an integer (signed 32 bits), write a function to check whether it is a power of 4.
7
8
- * Example 1:
9
- * Input: 16
10
- * Output: true
11
12
- * Example 2:
13
- * Input: 5
14
- * Output: false
15
16
- * Follow up: Could you solve it without loops/recursion?
17
- * */
18
public class _342 {
19
public static class Solution1 {
20
//Just dive a little bit deeper, you can realize that another important feature of a number
0 commit comments