1
2
3
4
5
|
class Solution:
def addBinary(self, a: str, b: str) -> str:
ans= int(a,2)+int(b,2)
ans= bin(ans)[2:]
return ans
|
cs |
반응형
'python-algorithm' 카테고리의 다른 글
Leetcode 29. Divide Two Integers (0) | 2021.07.15 |
---|---|
Leetcode 66. Plus One (0) | 2021.07.15 |
Leetcode 69. Sqrt(x) (0) | 2021.07.15 |
백준 22193 Multiply (0) | 2021.07.15 |
백준 5539 콜센터 (0) | 2021.07.15 |
댓글