본문 바로가기

CodingTest/Level2

[연습] 코딩테스트 - 구명보트

코딩테스트 연습

  • programmers.co.kr
  • 구명보트

def solution(people, limit) :
    answer = 0
    people.sort()

    a = 0
    b = len(people) - 1
    while a < b :
        if people[b] + people[a] <= limit :
            a += 1
            answer += 1
        b -= 1
    return len(people) - answer
반응형