728x90
SMALL

using System.Collections.Generic;

public class Solution {
    public int[] solution(long n) {
        string a = n.ToString();
        int[] answer = new int[a.Length];
        
        for(int i=0;i<a.Length;i++)
        {
            answer[i] = (int)(n%10);
            n /= 10;
        }
        return answer;
    }
}

 

/// String으로 만들어놓고 해야되는 줄은 몰랐다.

 

using System;

public class Solution {
    public long[] solution(long n) {
        int size = n.ToString().Length;
        long[] answer = new long[size];

        for(int i = 0; i < size; i++)
        {
            answer[i] = n % 10;
            n /= 10;
        }
        return answer;
    }
}

728x90

설정

트랙백

댓글