알고리즘

정렬 팁

코딩클로스 2020. 7. 11. 13:53

 

function solution(strings, n) {

var answer = [];

 

// function(a,b) < 0 이면 ab보다 작은 인덱스로 정렬한다.

// function(a,b) == 0 이면 ab의 순서를 바꾸지 않는다.

// function(a,b) > 0 이면 ba보다 작은 인덱스로 정렬한다.

strings.sort(function(a,b){

var first = a[n];

var second = b[n];

if(first===second)

{

return (a>b)-(a<b);

}

 

 

else{

console.log(first);

console.log(second);

console.log(first>second);

console.log(first<second);

console.log((first>second)-(first<second));

 

return (first > second) - (first < second);

 

}

})

 

 

return strings;

}