일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 묵시적 커서
- 티베로
- Linux
- vm
- VMware
- CentOS
- 프로그래머스
- DDL 추출
- X11 forwarding
- implicit
- terraform
- golang
- X11
- OPEN CURSOR
- 코딩테스트
- tablespace
- tac
- db
- Tuple
- 암시적 커서
- VM 설정
- python3.7
- 리눅스
- 파이썬
- tibero
- tas tac
- vm tac 구성
- 코테
- oracle
- Python
Archives
- Today
- Total
줄기세포
[Python 3]코딩테스트 - 해시 - 완주하지 못한 선수(프로그래머스) 본문
참가자의 이름이 담긴 list와 완주자 이르이 담긴 list가 있습니다.
두 개를 각각 dictionary로 담아 { key : value }를 { 이름 : 중복 이름 수 } 로 담아줍니다.
처음 if문은 완주자 이름에 없는 사람을 바로 골라낼 수 있습니다. answer은 key값이 됩니다.
두 번째 elif문은 value값이 일치하지 않으면, 즉 동명이인이 있는데, 완주자에 한명만 있으면 answer이 됩니다.
def solution(participant, completion):
answer = ''
participant_count = dict()
completion_count = dict()
## participant completion을 dictionary로 만들기
for player in participant:
if player not in participant_count.keys():
participant_count[player] = 1
else:
participant_count[player] += 1
for player in completion:
if player not in completion_count.keys():
completion_count[player] = 1
else:
completion_count[player] += 1
## dictionary를 이용해 판단 알고리즘 만들기
for key, value in participant_count.items():
if key not in completion_count.keys():
answer = key
elif participant_count[key] != completion_count[key]:
answer = key
else:
pass
return answer
아래는 collection의 counter 함수를 활용한 좋은 풀이를 한 코드가 있어서 가져왔습니다.
import collections
def solution(participant, completion):
answer = collections.Counter(participant) - collections.Counter(completion)
return list(answer.keys())[0]
'프로그래머스 코딩테스트' 카테고리의 다른 글
[Python 3]코딩테스트- 정렬 > K번째 수 [프로그래머스] (0) | 2021.04.22 |
---|---|
[Python 3]코딩테스트- 탐욕법(Greedy) > 체육복 [프로그래머스] (0) | 2021.03.23 |
코딩테스트(코테) 사이트 추천 (0) | 2020.10.19 |
[Python 3]코딩테스트 - 스택/큐 - 주식가격(프로그래머스) (0) | 2020.10.17 |
Comments