import java.util.*;
class Solution {
public int[] solution(int[][] score) {
List<Integer> list = new ArrayList<>();
for(int[] i : score) {
list.add((i[0] + i[1]));
}
list.sort(Collections.reverseOrder());
int[] answer = new int[score.length];
for(int i = 0; i < score.length; i++) {
answer[i] = list.indexOf(score[i][0] + score[i][1]) + 1;
}
return answer;
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[프로그래머스] OX퀴즈 (0) | 2023.02.06 |
---|---|
[프로그래머스] 저주의 숫자 3 (0) | 2023.02.06 |
[프로그래머스] 이진수 더하기 (0) | 2023.02.05 |
[프로그래머스] 잘라서 배열로 저장하기 (0) | 2023.02.05 |
[프로그래머스] 유한소수 판별하기 (0) | 2023.02.05 |