https://school.programmers.co.kr/learn/courses/30/lessons/250121
def solution(data, ext, val_ext, sort_by):
ext_dic={'code':0,'date':1,'maximum':2,'remain':3}
answer=[]
for i in data:
if i[ext_dic[ext]] < val_ext:
answer.append(i)
answer=sorted(answer,key=lambda x : x[ext_dic[sort_by]])
return answer
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[프로그래머스/PYTHON] 추억 점수 (0) | 2024.05.27 |
---|---|
PYTHON 프로그래머스)달리기 경주 (0) | 2024.05.27 |
PYTHON 프로그래머스)[PCCE 기출문제] 9번 / 이웃한 칸 (0) | 2024.05.27 |
Python 프로그래머스) [PCCP 기출문제] 1번 / 붕대 감기 (0) | 2024.05.27 |
Python 프로그래머스) 성격 유형 검사하기 (0) | 2024.05.14 |