| from typing import List | |
| def string_xor(a: str, b: str) -> str: | |
| """ Input are two strings a and b consisting only of 1s and 0s. | |
| Perform binary XOR on these inputs and return result also as a string. | |
| >>> string_xor('010', '110') | |
| '100' | |
| """ | |
| def xor(i, j): | |
| if i == j: | |
| return '0' | |
| else: | |
| return '1' | |
| return ''.join(xor(x, y) for x, y in zip(a, b)) | |