Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 224 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 224 Bytes

33.Add Binary

Description

Given two binary strings, return their sum (also a binary string).

Example

Input: "11" "1"
Output: "100"

From

LeetCode