Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- SW Expert Academy
- 편스토랑 우승상품
- AI 경진대회
- leetcode
- programmers
- Docker
- ubuntu
- 백준
- 프로그래머스
- 캐치카페
- github
- gs25
- 우분투
- 편스토랑
- 프로그래머스 파이썬
- 데이콘
- dacon
- 코로나19
- 맥북
- 파이썬
- Git
- PYTHON
- hackerrank
- Real or Not? NLP with Disaster Tweets
- Kaggle
- 더현대서울 맛집
- 금융문자분석경진대회
- ChatGPT
- Baekjoon
- 자연어처리
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 326. Power of Three (Python) 본문
728x90
반응형
Given an integer, write a function to determine if it is a power of three.
Example 1:
Input: 27
Output: true
Example 2:
Input: 0
Output: false
Example 3:
Input: 9
Output: true
Example 4:
Input: 45
Output: false
Follow up:
Could you do it without using any loop / recursion?
Solution
class Solution:
def isPowerOfThree(self, n: int) -> bool:
return n > 0 and pow(3, 31, n) == 0
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 268. Missing Number (Python) (0) | 2020.06.09 |
---|---|
[leetCode] 344. Reverse String (Python) (0) | 2020.06.08 |
[leetCode] 204. Count Primes (Python) (0) | 2020.06.06 |
[leetCode] 29. Divide Two Integers (Python) (2) | 2020.06.05 |
[leetCode] 46. Permutations (Python) (0) | 2020.06.04 |
Comments