import sys
def check_group_word(word):
cache = []
for i in word:
if i in cache:
if i == cache[-1]:
pass
else:
return False
else:
cache.append(i)
return True
if __name__ == "__main__":
input = sys.stdin.readline
N = int(input())
cnt = 0
for _ in range(N):
word = input()
bool = check_group_word(word)
if bool:
cnt +=1
print (cnt)
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 1339번 단어 수학 (파이썬) (0) | 2022.03.14 |
---|---|
[백준] 1330번 두 수 비교하기 (C) (0) | 2022.03.14 |
[백준] 1182번 부분수열의 합 (파이썬) (0) | 2022.03.11 |
[백준] 1181번 단어 정렬 (파이썬) (0) | 2022.03.11 |
[백준] 1158번 요세푸스 문제 (파이썬) (0) | 2022.03.11 |