반응형
츄르사려고 코딩하는집사입니다.
1. [프로그래머스/PCCE] [PCCE 기출문제] 8번 / 창고 정리 Python
2. 문제 출처
https://school.programmers.co.kr/learn/courses/30/lessons/250126
3. 풀이
- 아래의 else 문에서 clean_storage.append를 할 때, num[i]가 아닌 storage[i]를 append 해줘야 한다.
4. 소스 코드
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
반응형
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스/PCCE] PCCE 기출문제] 7번 / 가습기 Python (0) | 2024.04.22 |
---|---|
[프로그래머스/PCCE] [PCCE 기출문제] 6번 / 가채점 Python (1) | 2024.04.22 |
[프로그래머스/PCCE] [PCCE 기출문제] 5번 / 산책 Python (0) | 2024.04.22 |
[프로그래머스/PCCE] [PCCE 기출문제] 4번 / 저축 Python (1) | 2024.04.22 |
[프로그래머스/PCCE] [PCCE 기출문제] 3번 / 나이 계산 Python (0) | 2024.04.22 |
[프로그래머스/PCCE] [PCCE 기출문제] 2번 / 피타고라스의 정리 Python (0) | 2024.04.18 |
[프로그래머스/PCCE] [PCCE 기출문제] 1번 / 출력 Python (0) | 2024.04.18 |
[프로그래머스] 커피 심부름 Python(Python) (1) | 2023.10.23 |
최근댓글