标签:
题目链接:https://leetcode.com/problems/add-binary/
题目:
Given two binary strings, return their sum (also a binary string).
For example,
a = "11"
b = "1"
Return "100"
.
思路:
easy
算法:
标签:
原文地址:http://blog.csdn.net/yeqiuzs/article/details/51598076