아이공의 AI 공부 도전기

[프로그래머스]  Level 1 : 완주하지 못한 선수 (Python)

 

     

 

 

https://school.programmers.co.kr/learn/courses/30/lessons/42576

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

코드 링크

https://github.com/stellaluminary/Programmers

 

GitHub - stellaluminary/Programmers

Contribute to stellaluminary/Programmers development by creating an account on GitHub.

github.com

 

 

Python

 

방법 1 

 

def solution(participant, completion):
    p = {}

    for i in participant:
        if i not in p:
            p[i] = 1
        else:
            p[i] += 1

    for i in completion:
        if i in p:
            p[i] -= 1

    for i in p:
        if p[i] != 0:
            return i

 

 

방법 2 

 

collections.Counter를 활용하면 list의 각 value의 개수를 셀 수 있다.

또한 Counter 끼리 뺄쎔을 통해 남은 원소가 무엇인지 알 수 있다.

 

 

from collections import Counter

def solution(participant, completion):
    answer = Counter(participant) - Counter(completion)
    return list(answer)[0]

 

방법 3 

 

1명의 차이만 있으므로 정렬을 통해 하나씩 빼고 그 차이를 통한 결과를 도출할 수 있다.

 

def solution(participant, completion):
    participant.sort()
    completion.sort()
    for p, c in zip(participant, completion):
        if p != c:
            return p
    return participant[-1]

 

공유하기

facebook twitter kakaoTalk kakaostory naver band
loading