✨ 정답 ✨
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;
}
🧵 참고한 정답지 🧵
💡💡 기억해야 할 점 💡💡