function solution(strings, n) {
var answer = [];
// function(a,b) < 0 이면 a를 b보다 작은 인덱스로 정렬한다.
// function(a,b) == 0 이면 a와 b의 순서를 바꾸지 않는다.
// function(a,b) > 0 이면 b를 a보다 작은 인덱스로 정렬한다.
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;
}
'알고리즘' 카테고리의 다른 글
구름 문제 근묵자흑 (0) | 2020.11.18 |
---|---|
백준 11057 오르막 수 (0) | 2020.11.17 |
2.2 [자료구조 알고리즘] 비트연산 완전정복 (0) | 2020.07.12 |
2.1 [자료구조 알고리즘] 비트연산 완전정복 (0) | 2020.07.08 |
#1.0 선택정렬 (JAVA) (0) | 2020.07.07 |