[프로그래머스] 문자열 내 마음대로 정렬하기(Kotlin)

0

프로그래머스

목록 보기
84/128
post-thumbnail

[프로그래머스] 문자열 내 마음대로 정렬하기(Kotlin)

풀이

class Solution {
    fun solution(strings: Array<String>, n: Int): Array<String> {
        //(1) sorted(): 오름차순 정렬
        //(2) sortedBy{it[n]}: n번째 인덱스 값 기준으로 정렬
        //(3) toTypedArray(): List -> Array 형변환
        var answer = strings.sorted().sortedBy{it[n]}.toTypedArray()
        return answer
    }
}
profile
Be able to be vulnerable, in search of truth

0개의 댓글