[leetcode]67. Add Binary 二进制加法
Posted 程序媛詹妮弗
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[leetcode]67. Add Binary 二进制加法相关的知识,希望对你有一定的参考价值。
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
.
Example 1:
Input: a = "11", b = "1" Output: "100"
Example 2:
Input: a = "1010", b = "1011" Output: "10101"
以上是关于[leetcode]67. Add Binary 二进制加法的主要内容,如果未能解决你的问题,请参考以下文章