Day 19 of July LeetCode Challenge
1 min readJul 19, 2020
Given two binary strings, return their sum (also a binary string).
The input strings are both non-empty and contain only characters 1
or 0
.
Example 1:
Input: a = "11", b = "1"
Output: "100"