class Solution {
public int[] solution(long n) {
String str = String.valueOf(n);
int[] answer = new int[str.length()];
int count = 0;
while (n > 0) {
answer[count] = (int)(n % 10);
n /= 10;
count++;
}
return answer;
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[프로그래머스] 정수 제곱근 판별 (0) | 2023.02.08 |
---|---|
[프로그래머스] 문자열 내 p와 y의 개수 (0) | 2023.02.08 |
[프로그래머스] 자릿수 더하기 (0) | 2023.02.07 |
[프로그래머스] 평균 구하기 (0) | 2023.02.07 |
[프로그래머스] 약수의 합 (0) | 2023.02.07 |