[프로그래머스] 124나라의 숫자
2020. 4. 2. 13:03ㆍ프로그래머스/LEVEL 2
class Solution {
public String solution(int n) {
String answer = "";
while(n!=0){
if(n%3==0){
answer = 4 + answer;
n = n/3-1;
}else{
answer = n%3 + answer;
n /= 3;
}
}
return answer;
}
}
'프로그래머스 > LEVEL 2' 카테고리의 다른 글
[프로그래머스] 행렬의 곱셈 (0) | 2020.04.03 |
---|---|
[프로그래머스] 숫자의 표현 (0) | 2020.04.02 |
[프로그래머스] 위장 (0) | 2020.04.01 |
[프로그래머스] 카펫 (0) | 2020.03.31 |
[프로그래머스] 라면공장 (0) | 2020.03.31 |