250x250
Notice
Recent Posts
Recent Comments
Link
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- javascript
- Calendar
- Properties
- sql
- dfs
- math
- NIO
- List
- 스프링부트
- html
- set
- alter
- union_find
- CSS
- priority_queue
- deque
- BFS
- 큐
- Union-find
- GC로그수집
- 리소스모니터링
- string
- date
- map
- scanner
- Java
- 스택
- spring boot
- JPA
- 힙덤프
Archives
- Today
- Total
매일 조금씩
프로그래머스 level1 : 추억 점수 - Java 본문
728x90
반응형
import java.util.*;
import java.util.stream.*;
class Solution {
public int[] solution(String[] name, int[] yearning, String[][] photo) {
int[] answer = new int[photo.length];
List<String> nameList = new ArrayList<String>(Arrays.asList(name));
for(int i=0; i<photo.length; i++){
int miss = 0;
for(int j=0; j<photo[i].length; j++){
System.out.println(photo[i][j]);
miss += nameList.indexOf(photo[i][j]) == -1 ?
0 : yearning[nameList.indexOf(photo[i][j])];
}
answer[i] = miss;
}
return answer;
}
}
728x90
반응형
'알고리즘' 카테고리의 다른 글
프로그래머스 level1 : 바탕화면 정리 - Java (0) | 2023.06.02 |
---|---|
프로그래머스 level1 : 공원 산책 - Java (0) | 2023.06.02 |
프로그래머스 level1 : 달리기 경주 - Java (0) | 2023.06.02 |
프로그래머스 level1 : 대충 만든 자판 - JAVA (0) | 2023.06.01 |
프로그래머스 level1 : 로또의 최고 순위와 최저 순위 - JAVA (0) | 2022.02.21 |