반응형
문제 정보
제출 코드
count = int(input())
total = 0
for i in range(count):
word = input()
check = 0
for i in range(len(word)-1):
if(word[i]==word[i+1]):
continue
elif(word[i] in word[i+1:]):
check = 1
break
if(check==0):
total += 1
print(total)
'Study > 알고리즘' 카테고리의 다른 글
[백준 알고리즘] 1712번 Python (0) | 2021.10.04 |
---|---|
[백준 알고리즘] 1978번 Python (0) | 2021.10.04 |
[백준 알고리즘] 2941번 Python (0) | 2021.10.04 |
[백준 알고리즘] 5622번 Python (0) | 2021.10.04 |
[백준 알고리즘] 2908번 Python (0) | 2021.10.04 |
댓글