Difficulty:
Add two binary numbers. The input numbers are in string format, and the output should be a string as well. For example, "10" and "1011" should return "1101". Binary numbers do not have leading zeros.
"10"
"1011"
"1101"
Challenge Your Friends!
binaryAdd("1011", "10");