반응형
📂 그룹 단어 체커
n = int(input())
cnt = 0
for i in range(n):
temp = input()
if len(temp) > 1:
for x in str(temp):
if temp.count(x) > 1:
if temp == temp.replace(x*temp.count(x), ''):
break
else:
cnt += 1
else:
cnt += 1
print(cnt)
반응형
'Algorithm > Baekjoon' 카테고리의 다른 글
백준 7568 파이썬 / 덩치 of 브루트 포스 (0) | 2020.09.14 |
---|---|
백준 2231 파이썬 / 분해합 of 브루트 포스 (0) | 2020.09.14 |
파이썬 백준 2941번:크로아티아 알파벳 (0) | 2020.09.12 |
[파이썬] 백준 5622번: 다이얼 (0) | 2020.09.08 |
[파이썬] 백준 1475번 <방 번호> (0) | 2020.05.09 |