File tree 3 files changed +47
-0
lines changed
src/com/andavid/leetcode/_326
3 files changed +47
-0
lines changed Original file line number Diff line number Diff line change 91
91
| :--: | :------------------------------------------ |
92
92
| 412 | [ Fizz Buzz] [ 412 ] |
93
93
| 204 | [ Count Primes] [ 204 ] |
94
+ | 326 | [ Power of Three] [ 326 ] |
94
95
95
96
96
97
[ leetcode ] : https://leetcode.com/problemset/all/
138
139
[ 155 ] : https://github.com/andavid/leetcode-java/blob/master/note/155/README.md
139
140
[ 412 ] : https://github.com/andavid/leetcode-java/blob/master/note/412/README.md
140
141
[ 204 ] : https://github.com/andavid/leetcode-java/blob/master/note/204/README.md
142
+ [ 326 ] : https://github.com/andavid/leetcode-java/blob/master/note/326/README.md
Original file line number Diff line number Diff line change
1
+ # [ Power of Three] [ title ]
2
+
3
+ ## Description
4
+
5
+ Given an integer, write a function to determine if it is a power of three.
6
+
7
+ ** Follow up:**
8
+
9
+ Could you do it without using any loop / recursion?
10
+
11
+ ## 思路
12
+
13
+ 判断给定整数是否是 3 的某次方。最简单的方法是迭代,反复除以 3,看最终是不是等于 1。
14
+
15
+ ## [ 完整代码] [ src ]
16
+
17
+ ``` java
18
+ class Solution {
19
+ public boolean isPowerOfThree (int n ) {
20
+ if (n < 1 ) return false ;
21
+ while (n % 3 == 0 ) {
22
+ n /= 3 ;
23
+ }
24
+ return n == 1 ;
25
+ }
26
+ }
27
+ ```
28
+
29
+ [ title ] : https://leetcode.com/problems/power-of-three
30
+ [ src ] : https://github.com/andavid/leetcode-java/blob/master/src/com/andavid/leetcode/_326/Solution.java
Original file line number Diff line number Diff line change
1
+ class Solution {
2
+ public boolean isPowerOfThree (int n ) {
3
+ if (n == 0 ) return false ;
4
+ while (n % 3 == 0 ) {
5
+ n /= 3 ;
6
+ }
7
+ return n == 1 ;
8
+ }
9
+
10
+ public static void main (String [] args ) {
11
+ Solution solution = new Solution ();
12
+ System .out .println (solution .isPowerOfThree (3 ));
13
+ System .out .println (solution .isPowerOfThree (5 ));
14
+ }
15
+ }
You can’t perform that action at this time.
0 commit comments