XOR Strings 2

  • + 0 comments

    Python solution

        res = ""
        for i in range(len(s)):
            if s[i] == t[i]:
                res += '0';
            else:
                res += '1';
    
        return res