-
[😍 프로그래머스] 완주하지 못한 선수 - hashAlgorithm/1일 1코테 2021. 7. 22. 20:07반응형
https://programmers.co.kr/learn/courses/30/lessons/42576
✅ 내가 푼 답
def solution(participant, completion): hash_dict = {} # 참여자들 count, 이름이 같은 사람은 2가 된다. for person in participant: if person not in hash_dict: hash_dict[person] = 1 else: hash_dict[person] += 1 # 완주자들 같은 이름 -1 for person in completion: if person in hash_dict: hash_dict[person] -= 1 # 0이 아니면 리턴 for i in hash_dict.items(): if i[1] != 0: return i[0]
✅ 베스트 답안
import collections def solution(participant, completion): answer = collections.Counter(participant) - collections.Counter(completion) return list(answer.keys())[0]
카운터-카운터가 통하다니....!!!!!!!!!!
반응형'Algorithm > 1일 1코테' 카테고리의 다른 글
[🥲 프로그래머스] 위장 - hash (0) 2021.07.23 [🥲 프로그래머스] 전화번호 목록 - hash (0) 2021.07.22 [😍 프로그래머스-카카오인턴] 키패드 누르기 (0) 2021.07.22 [🥲 프로그래머스] 등굣길 - Dynamic programming (0) 2021.07.21 [🥲 프로그래머스] 정수 삼각형 - Dynamic Programming (0) 2021.07.20