-Code
t = int(input())
studnet_answer = [input() for _ in range(t)]
cnt = 0
for i in range(t):
test_answer = input()
if studnet_answer[i] == test_answer or test_answer == '_':
cnt += 1
print(cnt)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 24783번 Number Fun (0) | 2022.11.08 |
---|---|
[백준/파이썬] 25277번 Culture shock (0) | 2022.11.07 |
[백준/파이썬] 20360번 Binary numbers (0) | 2022.11.05 |
[백준/파이썬] 16175번 General Election (0) | 2022.11.04 |
[백준/파이썬] 21197번 Stopwatch (0) | 2022.11.03 |