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
- python 릿코드
- 릿코드풀이
- 파이썬 알고리즘 풀기
- 파이썬알고리즘풀기
- leetcode 풀기
- 릿코드
- 파이썬릿코드풀기
- 파이썬알고리즘
- 릿코드 풀기
- 파이썬 프로그래머스
- python xor
- 알고리즘풀기
- binary search
- 알고리즘풀이
- 파이썬 알고리즘
- 릿코드풀기
- 릿코드 파이썬
- 잇츠디모
- leetcode풀이
- 파이썬릿코드
- python zip_longest
- python sorted
- 코틀린기초
- LeetCode
- 파이썬 릿코드
- 상가수익률계산기
- python priority queue
- python Leetcode
- python 알고리즘
- leetcode풀기
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 231. Power of Two 본문
반응형
https://leetcode.com/problems/power-of-two/
문제)
솔루션1)
- 2의 승수는 A & (A-1) = 0을 만족
- 예시) 16 -> 10000, 16-1 -> 01111, 16 & 15 -> 10000 & 01111 = 0
class Solution:
def isPowerOfTwo(self, n: int) -> bool:
if n == 0:
return False
return (n & (n - 1)) == 0
솔루션2)
- 왼쪽 shift 연산자를 활용
class Solution:
def isPowerOfTwo(self, n: int) -> bool:
m = 1
while m < n:
m <<= 1
return m == n
솔루션3)
- 오른쪽 shift 연산자를 활용
class Solution:
def isPowerOfTwo(self, n: int) -> bool:
count = 0
while n > 0:
count += n & 1
if count > 1:
return False
n >>= 1
return count == 1
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 1832. Check if the Sentence Is Pangram (0) | 2021.11.03 |
---|---|
LeetCode 풀기 - 155. Min Stack (0) | 2021.11.02 |
LeetCode 풀기 - 20. Valid Parentheses (0) | 2021.10.31 |
LeetCode 풀기 - 136. Single Number (0) | 2021.10.31 |
LeetCode 풀기 - 771. Jewels and Stones (0) | 2021.10.29 |
Comments