Skip to content

Commit 8acf425

Browse files
committed
add 326
1 parent 6eebf5a commit 8acf425

File tree

3 files changed

+47
-0
lines changed

3 files changed

+47
-0
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@
9191
| :--: | :------------------------------------------ |
9292
| 412 | [Fizz Buzz][412] |
9393
| 204 | [Count Primes][204] |
94+
| 326 | [Power of Three][326] |
9495

9596

9697
[leetcode]: https://leetcode.com/problemset/all/
@@ -138,3 +139,4 @@
138139
[155]: https://github.com/andavid/leetcode-java/blob/master/note/155/README.md
139140
[412]: https://github.com/andavid/leetcode-java/blob/master/note/412/README.md
140141
[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

note/326/README.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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 numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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+
}

0 commit comments

Comments
 (0)