SMALL
문제출처
풀이코드
N=int(input())
answer=0
for i in range(N):
word=input()
compare=''
word_copy=''
for ch in word:
if ch != compare and ch not in word_copy:
compare=ch
word_copy+=ch
elif ch==compare:
compare=ch
word_copy+=ch
if word==word_copy:
answer+=1
print (answer)
LIST
'알고리즘-python > 백준 문제' 카테고리의 다른 글
[백준/2292/파이썬(Python3)] 벌집 (0) | 2021.07.07 |
---|---|
[백준/1712/파이썬(Python3)] 손익분기점 (0) | 2021.07.07 |
[백준/2941/파이썬(Python3)] 크로아티아 알파벳 (0) | 2021.07.05 |
[백준/5622/파이썬(Python3)] 다이얼 (0) | 2021.07.02 |
[백준/2675/파이썬(Python3)] 문자열 반복 (0) | 2021.07.02 |