[Java] 자연수 뒤집어 배열로 만들기
by Roel Downey728x90
반응형
자연수 뒤집어 배열로 만들기
문제
풀이
class Solution {
public int[] solution(long n) {
String str = String.valueOf(n);
int number = str.length();
int[] answer = new int[number];
for(int index=0; index<number;index++) {
answer[number-index-1] = Integer.parseInt(String.valueOf(str.charAt(index)));
}
return answer;
}
}
다른 풀이
class Solution {
public int[] solution(long n) {
String str = ""+n; // 스트링 + int 할 경우 스트링으로 인식
int number = str.length();
int[] answer = new int[number];
for(int index=0; index<number;index++) {
answer[index] = (int)(n%10);
n/=10;
}
return answer;
}
}
728x90
반응형
'알고리즘_자료구조 > 문제풀이' 카테고리의 다른 글
[Java] 크레인 인형뽑기 게임 (0) | 2020.09.22 |
---|---|
[Java] 수박수박수박수박수박수 (0) | 2020.03.07 |
[Java]서울에서 김서방 찾기 (0) | 2020.03.06 |
[Java] 자릿수 더하기 (0) | 2020.03.06 |
[Java] 약수의 합 (0) | 2020.03.06 |
블로그의 정보
What doing?
Roel Downey