LeetCode 0067 - Add Binary
Contents
Add Binary
Desicription
Given two binary strings, return their sum (also a binary string).
For example,
a = "11"
b = "1"
Return "100"
.
Solution
1 | class Solution { |
Given two binary strings, return their sum (also a binary string).
For example,
a = "11"
b = "1"
Return "100"
.
1 | class Solution { |