top of page

Looking to master object-oriented and system design for tech interviews or career growth?

  • Improve your system design and machine coding skills.

  • Study with our helpful resources.

  • Prepare for technical interviews and advance your career.

**We're in beta mode and would love to hear your feedback.

Add Binary Strings InterviewBit Solution



Problem Description:


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

Example:

a = "100"  -> 4 in decimal
b = "11"   -> 3 in decimal
Return a + b = “111” -> 7 in decimal

Solution Approach:

How will you add two binary numbers on paper? Just try implementing that approach.


Time Complexity:

O(N), where N is the size of input string.

Soultion in C++:



bottom of page