Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- VCS
- 파이썬
- 기술면접
- Programming
- Spring Framework
- Python
- 배달의 민족
- Jackson
- 스프링
- 기술블로그
- 깃허브
- 코딩테스트
- github
- 깃
- 우테코
- 코딩
- rebase
- utterances
- multi-thread
- 개발자
- django
- 우테코 프리코스
- git
- 버전관리
- 패스트캠퍼스
- 우아한 형제들
- 프로그래밍
- 프로그래머스
- 우아한 테크코스
- 자바
Archives
- Today
- Total
아둥바둥 개발일기
[프로그래머스 2020 KAKAO BLIND RECRUITMENT] 문자열 압축 - Python 본문
def solution(s):
answer = len(s)
for unit in range(1, len(s)):
result = ''
count = 1
for i in range(0, len(s), unit):
pivot = s[i: i + unit]
next_pivot = s[i + unit:i + unit + unit]
if pivot == next_pivot:
count += 1
continue
if 1 < count:
result += str(count)
result += pivot
count = 1
if len(result) < answer:
answer = len(result)
return answer
'코딩 테스트 연습' 카테고리의 다른 글
[프로그래머스 Level2] 전화번호 목록 - Python (0) | 2021.01.19 |
---|
Comments