오랜만에 푸는거라 가볍게 하려고 쉬운거로 하나 풀었다
한동안 일정이 있어서 쭉 쉬었는데 다시 슬슬 시작해야겠다
쉬운 문제라서 특별한 설명은 적을것이 없을것같다!
n = int(input())
count = 0
word1 = input().rstrip()
for _ in range(n-1):
word = input().rstrip()
if abs(len(word1) - len(word)) >= 2 :
continue
if len(word1) == len(word) or len(word1) == len(word) + 1:
temp = list(word1)
for w in word:
if w in temp:
temp.remove(w)
if len(temp) <=1 :
count += 1
elif len(word) == len(word1) + 1:
temp = list(word)
for w in word1:
if w in temp:
temp.remove(w)
if len(temp) <=1:
count += 1
print(count)