728x90
programmers.co.kr/learn/courses/30/lessons/42885#qna
def solution(people, limit):
people = sorted(people)
answer = 0
i, j = 0, len(people)-1
while True:
if i > j:
break
answer += 1
if 40 <= people[i] + people[j] <= limit:
i += 1
j -= 1
return answer
# 효율성..
반응형
'전.py' 카테고리의 다른 글
숫자 입력받아 역순으로 출력 (0) | 2021.01.07 |
---|---|
자릿수의 합 (0) | 2021.01.07 |
프로그래머스 전화번호 목록 (level 2) (1) | 2021.01.05 |
프로그래머스 소수 찾기 (level 2) (0) | 2021.01.05 |
프로그래머스 H-Index (level 2) (0) | 2021.01.05 |