Skip to content

Latest commit

 

History

History
20 lines (10 loc) · 276 Bytes

File metadata and controls

20 lines (10 loc) · 276 Bytes

Problem 67: Add Binary

Difficulty: Easy

Problem

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

Input: a = "11", b = "1"
Output: "100"