public int[] solution(String[] name, int[] yearning, String[][] photo) {
int [] answer = new int[photo.length];
Map<String,Integer> nameMap = new HashMap<>();
for(int i=0; i<name.length; i++){
nameMap.put(name[i],yearning[i]);
}
int i = 0;
for(String[] p : photo ){
int sum = 0;
for(String v : p ) {
if(nameMap.get(v) != null){
sum += nameMap.get(v);
}
}
answer[i] = sum;
i++;
}
return answer;
}
https://school.programmers.co.kr/learn/courses/30/lessons/176963
'알고리즘' 카테고리의 다른 글
[프로그래머스] 달리기 경주 (0) | 2023.05.31 |
---|---|
[프로그래머스] 그룹별 조건에 맞는 식당 목록 출력하기 (0) | 2023.05.29 |
프로그래머스 - 정수 내림차순으로 배치하기 (0) | 2022.12.25 |
프로그래머스 - x만큼 간격이 있는 n개의 숫자 (0) | 2022.12.19 |
프로그래머스 - 문자열 내 p와 y의 개수 (0) | 2022.12.19 |