Recent Posts
밍쯔와 안작고 안귀여운 에러들🖤
[Python] 프로그래머스 - level1 완주하지 못한 선수 본문
[문제]
https://programmers.co.kr/learn/courses/30/lessons/42576
[코드]
def solution(participant, completion) :
answer = ''
temp = 0
dic = {}
for part in participant :
dic[hash(part)] = part
temp += hash(part)
for com in completion :
temp -= hash(com)
answer = dic[temp]
return answer
'Algorithm' 카테고리의 다른 글
[Python] 프로그래머스 - level1 모의고사 (0) | 2022.03.17 |
---|---|
[Python] 프로그래머스 - level1 소수 만들기 (0) | 2022.03.15 |
[Python] 프로그래머스 - level1 내적 (0) | 2022.03.14 |
[Python] 프로그래머스 - level1 음양 더하기 (0) | 2022.03.13 |
[Python] 프로그래머스 - level1 신고 결과 받기 (0) | 2022.03.12 |