본문 바로가기
JAVA/프로그래머스

[프로그래머스/자바] 추억 점수

by 동백05 2024. 1. 16.

https://school.programmers.co.kr/learn/courses/30/lessons/176963

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

import java.util.*;
class Solution {
    public int[] solution(String[] name, int[] yearning, String[][] photo) {
        int[] answer = new int[photo.length];
        List<String> list = Arrays.asList(name);
        for(int i=0;i<photo.length;i++){
            answer[i]=0;
            for(String n : photo[i]){
                int index=list.indexOf(n);
                if(index!=-1){
                    answer[i]+=yearning[index];
                }
            }
        }
        
        return answer;
    }
}

 

이름 목록을 List로 변환하고, index를 찾아 추억 점수에 합산하였다. List에 존재하지 않아 -1이 나온 경우는 합치면 안되기 때문에 -1이 아닌 경우에만 하였다.

댓글