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 sorted
- 잇츠디모
- 알고리즘풀이
- python 릿코드
- 코틀린기초
- LeetCode
- python xor
- python zip_longest
- binary search
- leetcode 풀기
- 파이썬릿코드풀기
- leetcode풀이
- 릿코드
- 릿코드풀기
- python priority queue
- 파이썬릿코드
- python Leetcode
- 파이썬알고리즘
- 파이썬 릿코드
- 파이썬 알고리즘 풀기
- 파이썬 프로그래머스
- leetcode풀기
- python 알고리즘
- 릿코드풀이
- 알고리즘풀기
- 파이썬알고리즘풀기
- 상가수익률계산기
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 67. Add Binary 본문
반응형
67. Add Binary
https://leetcode.com/problems/add-binary/
문제)
솔루션1) 직접 계산
class Solution:
def addBinary(self, a: str, b: str) -> str:
a = list(map(int, a))
b = list(map(int, b))
res = ''
carry = 0
while a or b or carry:
if a:
carry += a.pop()
if b:
carry += b.pop()
res += str(carry % 2)
carry = carry // 2
return res[::-1]
솔루션2) int(), bin() 함수 사용
class Solution:
def addBinary(self, a: str, b: str) -> str:
return bin(int(a, base=2) + int(b, base=2))[2:]
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 1022. Sum of Root To Leaf Binary Numbers (0) | 2022.01.11 |
---|---|
LeetCode 풀기 - 382. Linked List Random Node (0) | 2022.01.11 |
LeetCode 풀기 - 1094. Car Pooling (0) | 2022.01.07 |
LeetCode 풀기 - 997. Find the Town Judge (0) | 2022.01.04 |
LeetCode 풀기 - 1026. Maximum Difference Between Node and Ancestor (0) | 2021.12.31 |
Comments