LeetCode 067 Add Binary

LeetCode 067 Add Binary Problem

Download Code
class Solution(object):
    # def addBinary(self, a, b):
    #     """
    #     :type a: str
    #     :type b: str
    #     :rtype: str
    #     """
    #     res = ''
    #     lsa, lsb = len(a), len(b)
    #     pos = -1
    #     plus = 0
    #     while (lsa + pos) >= 0 and (lsb + pos) >= 0:
    #         curr = int(a[pos]) + int(b[pos]) + plus
    #         if curr >= 2:
    #             plus = 1
    #             curr %= 2
    #         else:
    #             plus = 0
    #         res = str(curr) + res
    #         pos -= 1
    #     if lsa + pos >= 0:
    #         while (lsa + pos) >= 0:
    #             curr = int(a[pos]) + plus
    #             if curr >= 2:
    #                 plus = 1
    #                 curr %= 2
    #             else:
    #                 plus = 0
    #             res = str(curr) + res
    #             pos -= 1
    #     if lsb + pos >= 0:
    #         while (lsb + pos) >= 0:
    #             curr = int(b[pos]) + plus
    #             if curr >= 2:
    #                 plus = 1
    #                 curr %= 2
    #             else:
    #                 plus = 0
    #             res = str(curr) + res
    #             pos -= 1
    #     if plus == 1:
    #         res = '1' + res
    #     return res

    def addBinary(self, a, b):
        res = ''
        lsa, lsb = len(a), len(b)
        pos, plus, curr = -1, 0, 0
        # plus a[pos], b[pos] and curr % 2
        while (lsa + pos) >= 0 or (lsb + pos) >= 0:
            if (lsa + pos) >= 0:
                curr += int(a[pos])
            if (lsb + pos) >= 0:
                curr += int(b[pos])
            res = str(curr % 2) + res
            curr //= 2
            pos -= 1
        if curr == 1:
            res = '1' + res
        return res
Download Add Binary.py

List of all Add Binary problems

Leetcode 067 Add Binary problem solution in python3 with explanation. This is the best place to expand your knowledge and get prepared for your next interview.

Feedback is the most important part of any website.

If you have any query, suggestion or feedback, Please feel free to contact us.