반응형
class Solution {
public String solution(String[] storage, int[] num) {
int num_item = 0;
String[] clean_storage = new String[storage.length];
int[] clean_num = new int[num.length];
for(int i=0; i<storage.length; i++){
int clean_idx = -1;
for(int j=0; j<num_item; j++){
if(storage[i].equals(clean_storage[j])){
clean_idx = j;
break;
}
}
if(clean_idx == -1){
clean_storage[num_item] = storage[i];
clean_num[num_item] = num[i];
num_item += 1;
}
else{
clean_num[clean_idx] += num[i];
}
}
// 아래 코드에는 틀린 부분이 없습니다.
int num_max = -1;
String answer = "";
for(int i=0; i<num_item; i++){
if(clean_num[i] > num_max){
num_max = clean_num[i];
answer = clean_storage[i];
}
}
return answer;
}
}
반응형
'코딩해요 > JAVA' 카테고리의 다른 글
[프로그래머스] PCCE 기출문제 10번/데이터 분석 (0) | 2024.07.30 |
---|---|
[프로그래머스] PCCE 기출문제 9번/이웃한 칸 (0) | 2024.07.30 |
[프로그래머스] PCCE 기출문제 7번/가습기 (0) | 2024.07.30 |
[프로그래머스] PCCE 기출문제 6번/가채점 (0) | 2024.07.30 |
[PCCE 기출문제/JAVA] 1번 - 5번 (0) | 2024.07.16 |