Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- DART
- 코테
- 코딩테스트
- AndroidStudio
- cos pro
- 백준
- 동적계획법과최단거리역추적
- cos pro 1급
- 코드품앗이
- 동적계획법
- BAEKJOON
- django
- DFS와BFS
- Python
- 알고리즘
- 파이썬
- C++
- 개발
- Flutter
- 안드로이드스튜디오
- DFS
- codingtest
- cos
- vuejs
- Vue
- Algorithm
- android
- 안드로이드
- 분할정복
- issue
Archives
- Today
- Total
Development Artist
[COS Pro 1급, Python] 4차 2번 : 문자열 압축 본문
728x90
반응형
문제 유형
한줄 수정
난이도
normal
Note
1. 2차 10번 0들을 0으로 만들기와 로직 유사. 차이점 찾기(previous)
Code
# -*- coding: utf-8 -*-
# UTF-8 encoding when using korean
# 4차 2번
def solution(s):
s = s.lower()
answer = ""
previous = s[0]
counter = 1
for alphabet in s[1:]:
if alphabet == previous:
counter += 1
else:
answer += previous + str(counter)
counter = 1
previous = alphabet
answer += previous + str(counter)
return answer
s = "YYYYYbbbBbbBBBMmmM"
ret = solution(s)
print("solution 함수의 반환 값은", ret, "입니다.")
※ 가끔 코드 중 print(~)가 있습니다. 정리 못한 점 죄송합니다.
728x90
반응형
'Algorithm > COS' 카테고리의 다른 글
[COS Pro 1급, Python] 4차 4번 : 마방진 문제 (0) | 2022.02.25 |
---|---|
[COS Pro 1급, Python] 4차 3번 : 스키장 최소 비용 구하기 (0) | 2022.02.25 |
[COS Pro 1급, Python] 4차 1번 : 사전에서 단어찾기 (0) | 2022.02.25 |
[COS Pro 1급, Python] 3차 10번 : 밥먹고 머리자르고 (0) | 2022.02.25 |
[COS Pro 1급, Python] 3차 9번 : 팝업 스토어를 열 최적의 날짜 (0) | 2022.02.25 |
Comments