Skip to content

Commit 2c8e8af

Browse files
refactor 342
1 parent 7fc0319 commit 2c8e8af

File tree

1 file changed

+0
-15
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-15
lines changed

src/main/java/com/fishercoder/solutions/_342.java

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,5 @@
11
package com.fishercoder.solutions;
22

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-
* */
183
public class _342 {
194
public static class Solution1 {
205
//Just dive a little bit deeper, you can realize that another important feature of a number

0 commit comments

Comments
 (0)