Cometin'

프로그래머스-가장-큰-수 - Javascript

2021-11-10 at Algorithm category

문자열로 변환 후, 더한 값을 기준으로 정렬하여 풀었다.

function solution(numbers) {
    const answer = numbers
        .map((n) => n.toString())
        .sort((a, b) => b + a - (a + b))
        .join("");
    return answer[0] === "0" ? "0" : answer;
}

hyesungoh

Personal blog by hyesungoh.

I like to share my knowledge for those who wandering in issue.