[백준1316_파이썬(python)] - 그룹 단어 체커
문제
sol
import sys
n = int(input())
result = 0
for i in range(n):
s = sys.stdin.readline()
S = ''
check = True
for j in range(len(s)):
if(s[j] not in S):
S = S + s[j]
else:
if(s[j] != S[-1]):
check = False
if(check == True):
result = result + 1
print(result)
풀이
check 의 부울값을 True로 설정한 뒤
중첩반복문을 사용해 나왔던문자가 또 나온다면 false 반환
True일때만 값을 세서 출력
참고
Author And Source
이 문제에 관하여([백준1316_파이썬(python)] - 그룹 단어 체커), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@chestnut1044/백준1316파이썬python-그룹-단어-체커저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)