Notice
Recent Posts
Recent Comments
Link
S E P H ' S
[Python] 완주하지 못한 선수 본문
def solution(participant, completion):
participant.sort()
completion.sort()
for p, c in zip(participant, completion):
if p != c:
return p
return participant[-1]
'Algorithm > Programmers' 카테고리의 다른 글
[Python] 행렬의 덧셈 (0) | 2021.06.24 |
---|---|
[Python] x만큼 간격이 있는 n개의 숫자 (0) | 2021.06.24 |
[Python] 크레인 인형뽑기 게임 (0) | 2021.06.24 |
[Python] 정수 제곱근 판별 (0) | 2021.06.22 |
[Python] 제일 작은 수 제거하기 (0) | 2021.06.22 |