https://www.acmicpc.net/problem/2607
from copy import deepcopy
from collections import Counter
n = int(input())
answer = 0
arr = []
for i in range(n):
s = input()
if i == 0:
for j in s:
arr.append(j)
else:
cop = deepcopy(arr)
new = [j for j in s]
cnt = 0
for j in new:
if j in cop:
cop.remove(j)
else:
cnt += 1
if cnt < 2 and len(cop) < 2:
answer += 1
print(answer)
'알고리즘' 카테고리의 다른 글
파이썬) 최대 힙 - BOJ (0) | 2023.11.20 |
---|---|
파이썬) 회전초밥 - BOJ (0) | 2023.11.20 |
파이썬) 공유기 설치 - BOJ (0) | 2023.11.13 |
파이썬)체스판 위의 공 - BOJ(실패) (0) | 2023.11.12 |
파이선) 개똥벌레 - BOJ (0) | 2023.11.12 |