Add Binary
Try to solve the Add Binary problem.
We'll cover the following
Statement
Given two binary strings str1
and str2
, return their sum as a binary string.
Constraints:
str1.length
,str2.length
str1
andstr2
consist of0
or1
characters only.Any string must not contain leading zeros except the string representing the binary form of
.
Examples
Level up your interview prep. Join Educative to access 80+ hands-on prep courses.