https://school.programmers.co.kr/learn/courses/30/lessons/176963
def solution(name, yearning, photo):
# 이름
# 각 사람별 그리움 점수
# 사진에 담긴 이름
answer = []
score = {}
for n, y in zip(name, yearning):
score[n] = y
for ph in photo:
sum = 0
for p in ph:
if p in list(score.keys()):
sum += score[p]
else:
continue
answer.append(sum)
return answer
728x90
반응형
'🔻PS > Programmers' 카테고리의 다른 글
[Programmers] 프로그래머스 완주하지 못한 선수 Python (0) | 2024.07.16 |
---|---|
[Programmers] 프로그래머스 네트워크 Python (0) | 2024.07.16 |
[Programmers] 프로그래머스 단어 변환 Python (0) | 2024.07.16 |
[Programmers] 프로그래머스 저주의 숫자 3 Python (0) | 2024.06.03 |
[Programmers] 프로그래머스 피보나치 수 Python (0) | 2024.06.01 |