Python 프로그래머스 해시 1. 완주하지 못한 선수
def solution(participant, completion):
answer = ''
dict= {}
for p in participant:
dict[p] = dict.get(p,0) +1
for c in completion:
dict[c]-=1
for k,v in dict.items():
if v!=0:
answer+=k
return answer
def solution(participant, completion):
answer = ''
dict= {}
for p in participant:
dict[p] = dict.get(p,0) +1
for c in completion:
dict[c]-=1
for k,v in dict.items():
if v!=0:
answer+=k
return answer
[노마드코더 React movie app 강의 수강 후 정리 한 내용입니다] github에 원격 저장소에 프로젝트 코드를 올려두면 github 서버로 서비스 할 수 있다. 1. gh-pages를 설치한다. npm install gh-pages c...
Created By Themexpose | Distributed By Blogger Themes
No comments: