완주하지 못한 선수 - https://programmers.co.kr/learn/courses/30/lessons/42576
정답!
def solution(participant, completion):
participant.sort()
completion.sort()
for i in range(len(completion)):
if participant[i] != completion[i]:
return participant[i]
return participant[len(participant)-1]
두번 다 정렬한 다음 다른 이름이 나올 때 return해준다.
다른 이름이 없으면 가장 마지막 원소가 답이므로 participant의 마지막 원소를 return 해준다
'코딩테스트 > Python' 카테고리의 다른 글
[프로그래머스] 가운데 글자 가져오기 (0) | 2021.07.28 |
---|---|
[프로그래머스] K번째수 (0) | 2021.07.28 |
[프로그래머스]프린터 (0) | 2021.07.27 |
[프로그래머스]기능개발 (0) | 2021.07.23 |
[프로그래머스] 전화번호 목록 (1) | 2021.07.17 |