반응형
https://school.programmers.co.kr/learn/courses/30/lessons/250126
자료구조를 사용한 문제였습니다.
📕 풀이방법
📔 풀이과정
clean_storage에 없는 품목이라면 storage[i]를 추가하도록 수정해주면 됩니다.
📕 Code
📔 Python3
def solution(storage, num):
clean_storage = []
clean_num = []
for i in range(len(storage)):
if storage[i] in clean_storage:
pos = clean_storage.index(storage[i])
clean_num[pos] += num[i]
else:
clean_storage.append(storage[i])
clean_num.append(num[i])
# 아래 코드에는 틀린 부분이 없습니다.
max_num = max(clean_num)
answer = clean_storage[clean_num.index(max_num)]
return answer
*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.
'Algorithm > Implementation' 카테고리의 다른 글
(Python3) - 프로그래머스(PCCE 기출문제) : 6번 / 가채점 (0) | 2024.11.07 |
---|---|
(Python3) - 프로그래머스(PCCE 기출문제) : 7번 / 가습기 (0) | 2024.11.07 |
(Python3) - 프로그래머스(연습문제) : 숫자 짝꿍 (0) | 2024.11.05 |
(Python3) - 프로그래머스(PCCE 기출문제) : 8번 / 닉네임 규칙 (0) | 2024.11.05 |
(Python3) - 프로그래머스(2024 KAKAO WINTER INTERNSHIP) : 가장 많이 받은 선물 (0) | 2024.11.04 |