728x90
반응형
class Solution {
public int[] solution(long n) {
String[] num = String.valueOf(n).split("");
int[] answer = new int[num.length];
for(int i=0; i<num.length; i++){
answer[i] = Integer.valueOf(num[num.length-i-1]);
}
return answer;
}
}
728x90
반응형
'알고리즘 문제풀이 > Programmers - 자바' 카테고리의 다른 글
프로그래머스 - 문자열 내 p와 y의 개수 (0) | 2023.03.25 |
---|---|
프로그래머스 - 정수 제곱근 판별 (0) | 2023.03.25 |
프로그래머스 - x만큼 간격이 있는 n개의 숫자 (0) | 2023.03.25 |
프로그래머스 - 자릿수 더하기 (0) | 2023.03.25 |
프로그래머스 - 평균 구하기 (0) | 2023.03.25 |