반응형
https://programmers.co.kr/learn/courses/30/lessons/12932
class Solution {
public int[] solution(long n) {
String num = Long.toString(n);
int[] answer = new int[num.length()];
int index = 0;
while(n != 0){
answer[index] = (int)(n%10);
n = n/10;
index++;
}
return answer;
}
}
반응형
'코딩테스트 > 프로그래머스 1단계' 카테고리의 다른 글
프로그래머스 1단계 - 제일 작은 수 제거하기 (0) | 2021.08.19 |
---|---|
프로그래머스 1단계 - 짝수와 홀수 (0) | 2021.08.19 |
프로그래머스 1단계 - 정수 내림차순으로 배치하기 (0) | 2021.08.19 |
프로그래머스 1단계 - 이상한 문자 만들기 (0) | 2021.08.19 |
프로그래머스 1단계 - 숫자 문자열과 영단어 (0) | 2021.08.12 |