Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 그리디
- GKE
- 알고리즘
- BubbleSort
- easy
- go
- 백준
- Singleton Pattern
- java
- Observer Pattern
- mobaXTerm
- golang
- 파이썬
- Codility
- Python
- Dynamic Programming
- github
- cpu scheduling
- GCP
- 피보나치
- Kotlin
- Backjoon
- k8s
- docker
- Top-down
- kubernetes
- KAKAO
- Programmers
- LeetCode
Archives
- Today
- Total
To Be Developer
[LeetCode] 342. Power of Four (GoLang, Python) 본문
https://leetcode.com/problems/power-of-four/
[Go-Lang 풀이]
package main
// 메인 함수
func main() {
println(isPowerOfFour(4))
}
func isPowerOfFour(num int) bool {
// num > 4 일 때까지 반복
for num > 4 {
// 4로 나눈 나머지가 0 이 아닌 경우 return false
if num%4 != 0 {
return false
}
// num 을 4로 나누어준다.
num /= 4
}
// 반복문이 종료되면 num 이 1 or 4 이면 true 그렇지 않으면 false
if num == 1 || num == 4 {
return true
} else {
return false
}
}
[Python 풀이]
class Solution(object):
def isPowerOfFour(self, num):
while num>4 :
if num % 4 != 0:
return False
num /= 4
return num in (1, 4)
if __name__ == "__main__":
sl = Solution().isPowerOfFour(64)
print(sl)
'알고리즘 > LeetCode' 카테고리의 다른 글
[LeetCode] 26. Remove Duplicates from Sorted Array [GoLang, Python] (0) | 2019.03.31 |
---|---|
[LeetCode] 66. Plus One (GoLang, Python) (0) | 2019.03.31 |
[LeetCode] 205. Isomorphic Strings (Python) (0) | 2019.03.30 |
[LeetCode] 88. Merge Sorted Array Python (0) | 2019.03.29 |
[LeetCode] 917. Reverse Only Letter Python (0) | 2019.03.27 |