티스토리 뷰
문제출처 - https://programmers.co.kr/learn/courses/30/lessons/42576
내 풀이
def solution(participant, completion):
answer = ''
participant.sort()
completion.sort()
for i in range(len(completion)):
if participant[i] != completion[i]:
return participant[i]
return participant[-1]
다른 사람 풀이
import collections
def solution(participant, completion):
answer = collections.Counter(participant) - collections.Counter(completion)
return list(answer.keys())[0]
분석
counter를 사용했다.
counter는 컨테이너에 동일한 값의 자료가 몇개인지를 파악하는데 사용하는 객체이다.
counter는 딕셔너리 형태의 값을 반환한다. Counter({'aa': 2, 'cc': 1, 'dd': 1, 'bb': 1, 'ee': 1})
counter는 산술연산(덧셈/뺄셈/교집합,합집합)도 가능하다.
반환값은 딕셔너리 형태의 answer에서 key값에 해당하는 선수 이름이다.
'ALGORITHM > 프로그래머스' 카테고리의 다른 글
[Python]프로그래머스 - 위장(level2) (0) | 2020.02.16 |
---|---|
[Python] 프로그래머스 - 전화번호 목록(Level2) (1) | 2020.02.16 |
[Python]프로그래머스 - 두 정수 사이의 합(level1) (0) | 2020.02.10 |
[Python]프로그래머스 - 나누어 떨어지는 숫자 배열(level1) (0) | 2020.02.10 |
[Python]프로그래머스 - 같은 숫자는 싫어(level1) (0) | 2020.02.08 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- dictionary
- 문자열
- 재귀
- 힙
- 프로그래머스
- 구현
- 2019 Kakao Blind Recruitment
- 완전탐색
- 코딩테스트
- SW Expert
- programmers
- 파이썬
- hash
- 우선순위큐
- 괄호
- 딕셔너리
- C++
- combination
- 문자열처리
- 해시
- 정렬
- 스택
- left join
- 순열
- Python
- BOJ
- SWExpert
- 백준
- 2020 KAKAO BLIND RECRUITMENT
- Permutation
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함