본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 31608번 ハミング距離 (Hamming Distance)

by 현장 2024. 3. 19.

-Code

n = int(input())
s1 = input()
s2 = input()
res = 0

for i in range(n):
    if s1[i] != s2[i]:
        res += 1

print(res)