Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Git
- Real or Not? NLP with Disaster Tweets
- Baekjoon
- 데이콘
- 더현대서울 맛집
- 금융문자분석경진대회
- 파이썬
- dacon
- SW Expert Academy
- hackerrank
- Docker
- programmers
- 맥북
- leetcode
- github
- 프로그래머스
- 편스토랑 우승상품
- 프로그래머스 파이썬
- PYTHON
- 캐치카페
- 우분투
- 편스토랑
- gs25
- 자연어처리
- ubuntu
- AI 경진대회
- 코로나19
- ChatGPT
- Kaggle
- 백준
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 탐욕법(Greedy) - 큰 수 만들기 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 프로그래머스의 탐욕법(Greedy) - 큰 수 만들기 입니다.
👨🏻💻 코드 ( Solution )
def solution(number, k):
answer = [number[0]]
for num in number[1:]:
while answer and answer[-1] < num and k > 0:
answer.pop()
k -= 1
answer.append(num)
if k > 0:
answer = answer[:-k]
return "".join(answer)
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 11931번 : 수 정렬하기 4 (Python) (0) | 2022.02.25 |
---|---|
[Programmers] 최솟값 만들기 (Python) (1) | 2022.02.23 |
[Programmers] 2019 KAKAO BLIND RECRUITMENT - 오픈채팅방 (Python) (0) | 2022.02.21 |
[BaekJoon] 2822번 : 점수 계산 (Python) (0) | 2022.02.20 |
[Programmers] 피보나치 수 (Python) (0) | 2022.02.19 |
Comments