[프로그래머스] 자연수 뒤집어 배열로 만들기

2020. 6. 21. 19:10프로그래머스/LEVEL 1

class Solution {
  public int[] solution(long n) {
      int[] answer = {};
      
      String temp = Long.toString(n);
      answer = new int[temp.length()];
      
      for(int i=0; i<answer.length; i++){
          answer[i] = temp.charAt(answer.length-1-i) -'0';
      }
      
      return answer;
  }
}

1. 각 자릿수를 다뤄야 하므로 문자열로 변환하여 인덱스 별로 활용