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 | 31 |
Tags
- 우테코 프리코스
- rebase
- 깃허브
- 패스트캠퍼스
- multi-thread
- VCS
- 깃
- 개발자
- Programming
- 기술면접
- 프로그래머스
- utterances
- git
- Python
- Jackson
- 우테코
- 코딩
- 코딩테스트
- 우아한 테크코스
- github
- 기술블로그
- Spring Framework
- 스프링
- 파이썬
- 버전관리
- django
- 배달의 민족
- 우아한 형제들
- 프로그래밍
- 자바
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