영어 점수와 수학 점수의 평균 점수를 기준으로 학생들의 등수를 매기려고 합니다. 영어 점수와 수학 점수를 담은 2차원 정수 배열 score가 주어질 때, 영어 점수와 수학 점수의 평균을 기준으로 매긴 등수를 담은 배열을 return하도록 solution 함수를 완성해주세요.
제한사항
0 ≤ score[0], score[1] ≤ 100
1 ≤ score의 길이 ≤ 10
score의 원소 길이는 2입니다.
score는 중복된 원소를 갖지 않습니다.
입출력 예
score | result |
---|---|
[[80, 70], [90, 50], [40, 70], [50, 80]] | [1, 2, 4, 3] |
[[80, 70], [70, 80], [30, 50], [90, 100], [100, 90], [100, 100], [10, 30]] | [4, 4, 6, 2, 2, 1, 7] |
function solution(score) {
score = score.map(el => el.reduce((a,b)=>a+b,0)/2*1000)
let obj = {}
for(let i=0; i<score.length; i++){
obj[`${score[i] + i}`] = 0
}
score = Object.keys(obj).reverse()
const value = score.map(el => Math.floor(el/100))
const rank = [1]
for(let i=1; i<value.length; i++){
value[i-1] === value[i] ? rank[i] = rank[i-1] : rank[i] = i+1
}
const index = score.map(el => el%100)
for(let i=0; i<index.length; i++){
score[index[i]] = rank[i]
}
return score
}
score = score.map(el => el.reduce((a,b)=>a+b,0)/2)
원래 위치
와 값
을 함께 저장하면서 정렬하는 방법에 대하여.. score = score.map(el => el.reduce((a,b)=>a+b,0)/2*1000)
// score = [[0, 20], [10, 10], [10, 1]]
// > score = [10000, 10000, 5500]
let obj = {}
for(let i=0; i<score.length; i++){
obj[`${score[i] + i}`] = 0
}
/*
obj = {
"5502": 0,
"10000": 0,
"10001": 0
}
*/
score = Object.keys(obj).reverse()
// ["10001", "10000", "5502"]
평균점수*10
에 해당하는 부분은 배열 value
로 분류하고원래 위치
에 해당하는 부분을 배열 index
로 분류하고const value = score.map(el => Math.floor(el/100))
const index = score.map(el => el%100)
// value = [100, 100, 55]
// index = [1, 0, 2]
const rank = [1]
현재위치+1
을 순위로 매긴다for(let i=1; i<value.length; i++){
value[i-1] === value[i] ? rank[i] = rank[i-1] : rank[i] = i+1
}
// i = 1 일 때
// rank[0] === rank[1] 이므로 rank[1] = 1이다
// i = 2 일 때
// rank[1] > rank[2] 이므로 rank[2] = 2+1 = 3이다
// rank = [1, 1, 3]
원래 위치(index[i])
에 순위(rank[i])
를 재할당:for(let i=0; i<index.length; i++){
score[index[i]] = rank[i]
}
// index = [1, 0, 2]
// rank = [1, 1, 3]
// score = [1, 1, 3]
return score
너무 복잡하게 풀어서 별로 좋은 풀이는 아닌 거 같다..