728x90
프로그래머스 1단계
3진법 뒤집기
https://programmers.co.kr/learn/challenges
문제 설명
풀이
class Solution {
public int solution(int n) {
int answer = 0;
String stAnswer = "";
while(n > 0) {
stAnswer = (n % 3) + stAnswer;
n /= 3;
}
StringBuilder sb = new StringBuilder(stAnswer);
answer = Integer.parseInt(sb.reverse().toString(), 3);
return answer;
}
}
728x90
'알고리즘 > 프로그래머스 1단계' 카테고리의 다른 글
[프로그래머스] 두 개 뽑아서 더하기 (1) | 2022.06.05 |
---|---|
[프로그래머스] 핸드폰 번호 가리기 (1) | 2022.04.25 |
[프로그래머스] 같은 숫자는 싫어 (2) | 2022.04.25 |
[프로그래머스] 음양 더하기 (1) | 2022.04.25 |
[프로그래머스] 제일 작은 수 제거하기 (0) | 2022.04.25 |
댓글