[TIL]Day 137

이재희·2021년 4월 15일
0

TIL

목록 보기
137/312

탐욕법 프로그래머스 문제

구명보트

from collections import deque
def solution(people, limit):
    answer = 0
    people.sort(key= lambda x : -x)
    p = deque(people)
    while p:
        if len(p) > 1 and p[0] + p[-1] <= limit:
            p.pop()
        p.popleft()    
        answer += 1
    return answer
profile
오늘부터 열심히 산다

0개의 댓글