[프로그래머스 Lv.2] 알고리즘 고득점 Kit 탐욕법(Greedy) - 구명보트

김민지·2024년 4월 7일
0

✨ 정답 ✨

function solution(people, limit){
    let answer=0;
    people=people.sort((a,b)=>a-b);
    let left=0;
    let right=people.length-1;
    while(left<=right){
        if (people[left]+people[right]<=limit){
            left+=1;
        }
        right-=1;
        answer+=1;
    }
    return answer;
}

🧵 참고한 정답지 🧵

💡💡 기억해야 할 점 💡💡

profile
이건 대체 어떻게 만든 거지?

0개의 댓글

관련 채용 정보