문자열로 구성된 리스트 strings와, 정수 n이 주어졌을 때, 각 문자열의 인덱스 n번째 글자를 기준으로 오름차순 정렬하려 합니다. 예를 들어 strings가 ["sun", "bed", "car"]이고 n이 1이면 각 단어의 인덱스 1의 문자 "u", "e", "a"로 strings를 정렬합니다.
function solution(strings, n) {
let answer = strings.sort((a, b) => {
if(a[n] > b[n]) return 1;
if(a[n] < b[n]) return -1;
if(a[n] === b[n]){
if(a>b) return 1;
if(a<b) return -1;
return 0;
}
});
return answer;
}
function solution(strings, n) {
// strings 배열
// n 번째 문자열 비교
return strings.sort((s1, s2) => s1[n] === s2[n] ? s1.localeCompare(s2) : s1[n].localeCompare(s2[n]));
}
localeCompare :
- 'a'.localeCompare('c'); // -2 or -1, a가 c 앞에 오기 때문에 음수를 리턴
- 'check'.localeCompare('against'); // 2 or 1, 알파벳 순으로 check가 against 뒤에 오기 때문에 양수를 리턴
- 'a'.localeCompare('a'); // 0, 동일하면 0을 리턴