https://www.acmicpc.net/problem/1316
n = int(input())
cnt = 0
for i in range(n):
word = list(input())
word2 = [word[0]]
flag = 0
for i in word:
if i!=word2[len(word2)-1]:
if i in word2:
flag = 1
else:
word2.append(i)
if flag==0 :
cnt += 1
print(cnt)
'알고리즘 > 백준' 카테고리의 다른 글
백준 2292: 벌집 (Python) (0) | 2021.08.26 |
---|---|
백준 1712: 손익분기점 (Python) (0) | 2021.08.26 |
백준 2941: 크로아티아 알파벳 (Python) (0) | 2021.08.25 |
백준 2908: 상수 (Python) (0) | 2021.08.25 |
백준 1157: 단어 공부 (Python) (0) | 2021.08.25 |