가장 많이 받은 선물1 [2024 KAKAO WINTER INTERNSHIP]가장 많이 받은 선물 [파이썬] 문제 설명 문제 풀이 from pprint import pprint def solution(friends, gifts): friends = sorted(set(friends)) give_cnt = {friend : 0 for friend in friends} # 준 횟수 receive_cnt = {friend : 0 for friend in friends} # 받은 횟수 present_cnt = {friend : 0 for friend in friends} # 선물 지수 next_month_cnt = {friend : 0 for friend in friends} # 다음달에 받는 횟수 gr_records = { friend: {other: [0, 0] for other in set(friends) - {.. 2024. 1. 10. 이전 1 다음