You are viewing a single comment's thread. Return to all comments →
Here is my python working debugged solution -->
def strings_xor(s, t): res = "" for i in range(len(s)): if s[i] == t[i]: res += '0'; else: res += '1';
return res
s = input() t = input() print(strings_xor(s, t))
Seems like cookies are disabled on this browser, please enable them to open this website
XOR Strings
You are viewing a single comment's thread. Return to all comments →
Here is my python working debugged solution -->
def strings_xor(s, t): res = "" for i in range(len(s)): if s[i] == t[i]: res += '0'; else: res += '1';
s = input() t = input() print(strings_xor(s, t))