二进制相加
Description
Given two binary strings, return their sum (also a binary string).
The input strings are both non-empty and contains only characters 1 or 0.
二进制相加,返回新的二进制值,依旧 Python 开挂
Example
Example One
1 | Input: a = "11", b = "1" |
Example Two
‘’’
Input: a = “1010”, b = “1011”
Output: “10101”
‘’’
Answer
1 | class Solution(object): |