[Java] 추억 점수 - Lv1 프로그래머스코딩테스트/프로그래머스2023. 3. 31. 13:09
Table of Contents
728x90
728x90
https://school.programmers.co.kr/learn/courses/30/lessons/176963
풀이
Map과 단순 For문 중 뭘 골라서 풀까 하다가 단순 삼중For문으로 선택해서 풀었음
배열의 길이가 길지않기 때문에 고려할 사항이 없었음.
class Solution {
public int[] solution(String[] name, int[] yearning, String[][] photo) {
int[] answer = new int[photo.length];
for(int i=0; i<name.length; i++) {
for(int j=0; j<photo.length; j++) {
for(int k=0; k<photo[j].length; k++) {
if(photo[j][k].equals(name[i])) {
answer[j] += yearning[i];
continue;
}
}
}
}
return answer;
}
}
728x90
300x250
@mag1c :: 꾸준히 재밌게
2023.04 ~ 백엔드 개발자의 기록
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!