JavaScript_38.문자열 내 마음대로 정렬하기

hams·2023년 5월 4일
0

algorithm

목록 보기
40/62

Q.
문자열로 구성된 리스트 strings와, 정수 n이 주어졌을 때, 각 문자열의 인덱스 n번째 글자를 기준으로 오름차순 정렬하려 합니다. 예를 들어 strings가 ["sun", "bed", "car"]이고 n이 1이면 각 단어의 인덱스 1의 문자 "u", "e", "a"로 strings를 정렬합니다.


나의 코드

function solution(strings, n) {
    return strings.sort((a, b) => 
        a[n] == b[n] ? a.localeCompare(b) : a[n].localeCompare(b[n]))
    
}

0개의 댓글