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 |
Tags
- Python
- 파이썬
- easy
- 알고리즘
- java
- Kotlin
- Backjoon
- kubernetes
- 피보나치
- KAKAO
- GKE
- Codility
- docker
- 그리디
- github
- Top-down
- mobaXTerm
- Observer Pattern
- go
- k8s
- golang
- 백준
- cpu scheduling
- Singleton Pattern
- GCP
- Programmers
- LeetCode
- BubbleSort
- Dynamic Programming
Archives
- Today
- Total
To Be Developer
[LeetCode] 476. Number Complement 본문
class Solution(object): def findComplement(self, num): # 2진수를 2^0 ~ 2^n 까지 저장할 배열 변수 bi = [] # num 이 0 이 될때까지 반복을 돌림 while num!=0: # 2로 나눈 나머지를 bi에 append bi.append(num%2) # 계산하였으므로 num 을 2로 나눔 num = num//2 # return 할 값 answer = 0 # bi를 0 제곱부터 N제곱까지 배치하였으므로 # enumerate 함수를 사용하여 index를 그대로 사용하면 된다. for i, v in enumerate(bi): # v 값이 0이면 2^i 를 answer에 더한다 if v == 0: answer += 2**i # return answer return answer if __name__ == "__main__": sl = Solution().findComplement(5) print(sl)
https://leetcode.com/problems/number-complement/
'알고리즘 > LeetCode' 카테고리의 다른 글
[LeetCode] 796. Rotate String Python (0) | 2019.03.26 |
---|---|
[LeetCode] 1020. Partion Array Into Three Parts With Equal Sum Python (0) | 2019.03.26 |
[LeetCode] 942. DI String Match Python (0) | 2019.03.25 |
[LeetCode] 557. Reverse Words in a String III (0) | 2019.03.24 |
[LeetCode] 561. Array Partition I (0) | 2019.03.24 |