-Code
n = int(input())
text1, text2 = input(), input()
res = 0
for i in range(n):
if text1[i] == text2[i]:
res += 1
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 32305번 Farmers’ Market (1) | 2024.10.30 |
---|---|
[백준/파이썬] 32585번 Building Pyramids (1) | 2024.10.29 |
[백준/파이썬] 12571번 Rope Intranet (Small) (0) | 2024.10.27 |
[백준/파이썬] 22421번 Koto Municipal Subway (0) | 2024.10.26 |
[백준/파이썬] 9971번 The Hardest Problem Ever (0) | 2024.10.25 |