컴공생의 다이어리
[프로그래머스] 가장 큰 수 - 자바스크립트(JS) 본문
[프로그래머스] 가장 큰 수 - 자바스크립트(JS)
function solution(numbers) {
let answer = numbers
.map((v) => String(v))
.sort((a, b) => (b + a) - (a + b))
.join("");
return answer[0] === "0" ? "0" : answer;
}
solution([6, 10, 2]);
solution([3, 30, 34, 5, 9]);
https://school.programmers.co.kr/learn/courses/30/lessons/42746
728x90
'Development > Algorithm & Coding Test' 카테고리의 다른 글
[파이썬, Python] 백준 14621번 : 나만 안되는 연애 (1) | 2022.08.21 |
---|---|
[프로그래머스] K번째수 - 자바스크립트(JS) (0) | 2022.08.20 |
[파이썬, Python] 백준 4097번 : 수익 (1) | 2022.08.17 |
[파이썬, Python] 백준 20922번 : 겹치는 건 싫어 (0) | 2022.08.15 |
[파이썬, Python] 백준 2003번 : 수들의 합 2 (0) | 2022.08.14 |
Comments