함수 solution은 정수 n을 매개변수로 입력받습니다. n의 각 자릿수를 큰것부터 작은 순으로 정렬한 새로운 정수를 리턴해주세요. 예를들어 n이 118372면 873211을 리턴하면 됩니다.
n | reurn |
---|---|
118372 | 873211 |
import java.util.*;
class Solution {
public long solution(long n) {
long answer = 0;
ArrayList<Long> list = new ArrayList<>();
while(n >0) { // 자릿수 뽑아오기
list.add(n % 10);
n /= 10;
}
list.sort(Comparator.naturalOrder()); //오름 차순 정렬
for(int i = 0; i < list.size(); i++) {
answer += list.get(i) * (long)Math.pow(10, i);
}
return answer;
}
}
list.sort(Comparator.naturalOrder())
오름 차순으로 바꾸면answer += list.get(i) * (long)Math.pow(10, i)
Math.pow(10, i)
는 10을 i만큼 거듭 제곱을 해주는 식.