[백준]B1-1032

py_code·2022년 1월 6일
0
post-custom-banner
n = int(input())
L = list(input())
L_len = len(L)
for i in range(n - 1):
    L2 = list(input())
    for j in range(L_len):
        if L[j] != L2[j]:
            L[j] = '?'
print(''.join(L))
profile
개발자를 꿈꿉니다.

0개의 댓글