67. Add Binary
https://leetcode.com/problems/add-binary/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
.
Example 1:
Example 2:
Solution:
Last updated