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 | 31 |
Tags
- PYTHON
- 더현대서울 맛집
- SW Expert Academy
- Docker
- hackerrank
- 편스토랑 우승상품
- dacon
- 캐치카페
- 데이콘
- gs25
- github
- 자연어처리
- 프로그래머스
- ChatGPT
- Kaggle
- Real or Not? NLP with Disaster Tweets
- 편스토랑
- 백준
- programmers
- 우분투
- Git
- 코로나19
- 파이썬
- 맥북
- Baekjoon
- 금융문자분석경진대회
- AI 경진대회
- 프로그래머스 파이썬
- ubuntu
- leetcode
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