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
- 맥북
- ChatGPT
- leetcode
- 프로그래머스
- 백준
- gs25
- 프로그래머스 파이썬
- 우분투
- 편스토랑 우승상품
- 더현대서울 맛집
- 파이썬
- SW Expert Academy
- Git
- Real or Not? NLP with Disaster Tweets
- dacon
- programmers
- ubuntu
- Baekjoon
- Kaggle
- AI 경진대회
- github
- hackerrank
- 캐치카페
- Docker
- 자연어처리
- PYTHON
- 데이콘
- 편스토랑
- 코로나19
- 금융문자분석경진대회
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 명예의 전당 (1) (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 프로그래머스의 명예의 전당 (1) 입니다.
👨🏻💻 문제 풀이
점수 리스트에서 꺼내온 값을 리스트에 append 하고
answer = []
top_k_list = []
for score in score_list:
top_k_list.append(score)
내림차순으로 정렬한 뒤 상위 k 개만 남긴 다음
top_k_list = sorted(top_k_list, reverse=True)[:k]
상위 k 개만 남긴 리스트에서 가장 작은 값을 정답 리스트에 계속 append 하면 끝!
answer.append(min(top_k_list))
👨🏻💻 코드 ( Solution )
def solution(k, score_list):
answer = []
top_k_list = []
for score in score_list:
top_k_list.append(score)
top_k_list = sorted(top_k_list, reverse=True)[:k]
answer.append(min(top_k_list))
return answer
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[Programmers] 7의 개수 (Python) (0) | 2023.02.25 |
---|---|
[Programmers] 짝수 홀수 개수 (Python) (0) | 2023.02.23 |
[Programmers] 분수의 덧셈 (Python) (0) | 2023.02.21 |
[Programmers] 옹알이 (2) (Python) (0) | 2023.02.20 |
[Programmers] 카드 뭉치 (Python) (0) | 2023.02.19 |
Comments