728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/12932
using System;
public class Solution {
public int[] solution(long n) {
char[] chr = n.ToString().ToCharArray();
int[] answer = new int[chr.Length];
Array.Reverse(chr);
for (int i = -1; ++i < chr.Length;)
{
int temp = Convert.ToInt32(chr[i].ToString());
answer[i] = temp;
}
return answer;
}
}
반응형
'프로그래머스_C# > Level_1' 카테고리의 다른 글
[프로그래머스 C#] 이상한 문자 만들기 (0) | 2021.08.19 |
---|---|
[프로그래머스 C#] 자릿수 더하기 (0) | 2021.08.19 |
[프로그래머스 C#] 정수 내림차순으로 배치하기 (0) | 2021.08.11 |
[프로그래머스 C#] 정수 제곱근 판별 (0) | 2021.08.01 |
[프로그래머스 C#] 제일 작은 수 제거하기 (0) | 2021.07.28 |