티스토리 뷰
문제출처 - https://programmers.co.kr/learn/courses/30/lessons/60057
def solution(s):
answer = s
minLen = len(s)
# 문자열을 1개~len(s)/2개씩 각 단위만큼 잘라서 압축
for unit in range(1, len(s) // 2 + 1):
tempAnswer = ""
temp = s[:unit]
cnt = 1
for i in range(unit, len(s), unit):
if temp == s[i:i+unit]:
cnt += 1
else:
if cnt == 1:
tempAnswer += temp
else:
tempAnswer += str(cnt) + temp
cnt = 1
temp = s[i:i+unit]
# 마지막 문자 넣어주기
if cnt == 1:
tempAnswer += temp
else:
tempAnswer += str(cnt) + temp
if len(tempAnswer) < minLen:
answer = tempAnswer
minLen = len(answer)
return len(answer)
설명
문자열을 1개~len(s)/2개씩 각 단위만큼 잘라서 압축해본다.
압축한게 이전에 압축한거보다 짧으면 answer을 바꿔준다.
근데 2중 for문을 저렇게 돌리면 압축된 마지막 문자열이 tempAnswer에 포함이 안되기 때문에 따로 넣어줘야 한다. (이 코드를 좀 더 간결하게 할 수 있는 방법을 찾아봐야겠다.)
'ALGORITHM > 프로그래머스' 카테고리의 다른 글
[Python][2020 KAKAO] 프로그래머스 - 기둥과 보 설치(LEVEL3) (0) | 2020.03.25 |
---|---|
[Python][2020 KAKAO] 프로그래머스 - 괄호변환(LEVEL2) (2) | 2020.03.22 |
[Python] 프로그래머스 - 짝지어 제거하기(LEVEL2) (0) | 2020.03.14 |
[Python] 프로그래머스 - 땅따먹기(LEVEL2) (0) | 2020.03.14 |
[Python][2019 KAKAO] 프로그래머스 - 오픈채팅방(LEVEL2) (0) | 2020.03.14 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 순열
- 문자열
- 백준
- Permutation
- 스택
- 힙
- SWExpert
- 정렬
- 코딩테스트
- hash
- 2019 Kakao Blind Recruitment
- 괄호
- programmers
- dictionary
- 2020 KAKAO BLIND RECRUITMENT
- 프로그래머스
- 파이썬
- 구현
- combination
- 딕셔너리
- 우선순위큐
- 문자열처리
- 완전탐색
- left join
- C++
- 해시
- Python
- 재귀
- SW Expert
- BOJ
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함