Add Binary


Given two binary strings a
and b
, return their sum as a binary string.
LeetCode Problem - 67
import java.math.BigInteger;
class Solution {
// Method to add two binary strings
public String addBinary(String a, String b) {
// Convert the first binary string to a BigInteger
BigInteger num1 = new BigInteger(a, 2);
// Convert the second binary string to a BigInteger
BigInteger num2 = new BigInteger(b, 2);
// Add the two BigIntegers
BigInteger sum = num1.add(num2);
// Convert the sum back to a binary string and return it
return sum.toString(2);
}
}
Subscribe to my newsletter
Read articles from Gulshan Kumar directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by

Gulshan Kumar
Gulshan Kumar
As a Systems Engineer at Tata Consultancy Services, I deliver exceptional software products for mobile and web platforms, using agile methodologies and robust quality maintenance. I am experienced in performance testing, automation testing, API testing, and manual testing, with various tools and technologies such as Jmeter, Azure LoadTest, Selenium, Java, OOPS, Maven, TestNG, and Postman. I have successfully developed and executed detailed test plans, test cases, and scripts for Android and web applications, ensuring high-quality standards and user satisfaction. I have also demonstrated my proficiency in manual REST API testing with Postman, as well as in end-to-end performance and automation testing using Jmeter and selenium with Java, TestNG and Maven. Additionally, I have utilized Azure DevOps for bug tracking and issue management.