Code/Python & Django6 [Python][프로그래머스] 완주하지 못한 선수 - python javascript와 같이 sort()함수를 이용하고자 했다. for문의 동작방식이 javascript와 다르다. 그러나 IndexError: list index out of range 오류가 났다. 원소 개수가 하나 적은 completion 배열은 비교 불가능하다는 것이다. participant 배열의 마지막 요소만 남을 때 비교할 수 없어서 다른 방식을 찾아야 했다. (1차-1과 1차-2는 비슷한 방식이다. 단순메모용) #1차-1 def solution(participant, completion): answer = '' participant.sort() completion.sort() num = 0 for p in participant: if p == completion[num]: num += 1 c.. 2020. 3. 6. 이전 1 2 다음