class Solution {
public int solution(int n) {
String s = Integer.toString(n, 3);
String reversed = new StringBuilder(s).reverse().toString();
return Integer.parseInt(reversed, 3);
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] k의 개수 (0) | 2023.09.23 |
---|---|
[프로그래머스/자바] 글자 지우기 (0) | 2023.09.21 |
[프로그래머스/자바] 약수의 개수와 덧셈 (0) | 2023.09.21 |
[프로그래머스/자바] 콜라츠 추측 (0) | 2023.09.21 |
[프로그래머스/자바] 문자열 내림차순으로 배치하기 (0) | 2023.08.07 |