Haribo ML, AI, MATH, Algorithm

구명보트

2021-01-19
Haribo

구명보트

코드

from collections import deque
def solution(people, limit):
    people = deque(sorted(people))
    answer = 0
    while people :
        first = people.pop()
        if people and first + people[0] <= limit :
            people.popleft()
        answer += 1
    return answer

Similar Posts

이전 포스트 가장 큰 수

다음 포스트 메뉴 리뉴얼

Comments