https://school.programmers.co.kr/learn/courses/30/lessons/140108
def solution(s):
compare=""
c_cnt=0
oth_cnt=0
word=0
last_index = len(s)-1
for index,i in enumerate(s):
if compare=="":
compare+=i
if compare==i:
c_cnt+=1
else:
oth_cnt+=1
if c_cnt == oth_cnt:
word+=1
c_cnt=0
oth_cnt=0
compare=""
elif index==last_index and c_cnt!=oth_cnt:
word+=1
return word
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[프로그래머스/PYTHON] 기사단원의 무기 (0) | 2024.05.29 |
---|---|
[프로그래머스/PYTHON] 명예의 전당 (1) (0) | 2024.05.29 |
[프로그래머스/PYTHON] 가장 가까운 같은 글자 (0) | 2024.05.27 |
[프로그래머스/PYTHON] 크기가 작은 부분 문자열 (0) | 2024.05.27 |
[프로그래머스/PYTHON] 2023 KAKAO BLIND RECRUITMENT 개인정보 수집 유효기간 (0) | 2024.05.27 |