https://programmers.co.kr/learn/courses/30/lessons/12932
1
2
3
4
5
6
7
8
9
10
11
12
|
class Solution {
public int[] solution(long n) {
int[] answer = new int[(n+"").length()];
for (int i = 0; i < answer.length; i++) {
answer[i] = (int)(n % 10);
n = n / 10L;
}
return answer;
}
}
Colored by Color Scripter
|
자릿수 더하기 문제의 방법 2와 같다
'Algorithm > 프로그래머스' 카테고리의 다른 글
[프로그래머스]연습문제 : 정수 제곱근 판별 (level 1) (0) | 2019.11.07 |
---|---|
[프로그래머스]연습문제 : 정수 내림차순으로 배치하기 (level 1) (0) | 2019.11.07 |
[프로그래머스]연습문제 : 자릿수 더하기 (level 1) (0) | 2019.11.07 |
[프로그래머스]연습문제 : 이상한 문자 만들기 (level 1) (0) | 2019.11.07 |
[프로그래머스]연습문제 : 약수의 합 (level 1) (0) | 2019.11.07 |
댓글