[프로그래머스#JS] 124 나라의 숫자
문제
124나라의숫자 https://programmers.co.kr/learn/courses/30/lessons/12899
해결
- 규칙 찾기..
코드
function solution(n) {
var answer = "";
var temp = n;
while (temp > 0) {
if (temp % 3 === 0) {
answer = "4" + answer;
temp = temp / 3 - 1;
} else if (temp % 3 === 1) {
answer = "1" + answer;
temp = Math.floor(temp / 3);
} else {
answer = "2" + answer;
temp = Math.floor(temp / 3);
}
}
return answer;
}
Author And Source
이 문제에 관하여([프로그래머스#JS] 124 나라의 숫자), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@tunakim/프로그래머스JS-124-나라의-숫자저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)