package
0.0.0-20230710210237-5ce2504b62fa
Repository: https://github.com/shomali11/go-interview.git
Documentation: pkg.go.dev

# README

Description

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

Example 1:

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

# Functions

Add adds two binary string numbers.