https://programmers.co.kr/learn/courses/30/lessons/12899
function solution(n) {
var answer = "";
var temp = [];
var r = 0;
while (n != 0) {
if (parseInt(n % 3) == 0) {
temp.push(4);
n = parseInt(n / 3) - 1;
} else {
temp.push(parseInt(n % 3));
n = parseInt(n / 3);
}
}
temp = temp.reverse();
answer = temp.join("");
return answer;
}
'algorithm > js' 카테고리의 다른 글
[프로그래머스] 문자열 압축 (0) | 2020.05.01 |
---|---|
[프로그래머스] 기능개발 (0) | 2020.04.30 |
[프로그래머스] 스킬트리 (0) | 2020.04.30 |
[프로그래머스] 다리를 지나는 트럭 (0) | 2020.04.30 |
[프로그래머스] 쇠막대기 (0) | 2020.04.30 |
댓글