https://www.acmicpc.net/problem/1316
# 1316 그룹 단어 체커
n = int(input())
group_word = 0
for i in range(n):
word = input()
error = 0
for i in range(len(word)-1):
if word[i] != word[i+1]:
new_word = word[i+1:]
if new_word.count(word[i]) > 0:
error += 1
if error == 0:
group_word += 1
print(group_word)
'Coding Test' 카테고리의 다른 글
Python 백준 알고리즘 2193 : 이친수 (0) | 2023.02.15 |
---|---|
Python 백준 알고리즘 1256 : 사전 (0) | 2023.02.15 |
Python 백준 알고리즘 2941 : 크로아티아 알파벳 (0) | 2023.02.09 |
Python 백준 알고리즘 5622 : 다이얼 (0) | 2023.02.09 |
Python 백준 알고리즘 1197 : 최소 스패닝 트리 (0) | 2023.02.08 |