프로그래머스/레벨11 코테 using System.Collections;using System.Collections.Generic;using UnityEngine;public class Solution{ public long solution(long n) { string answer = ""; string nStr = n.ToString(); int[] intArray = SortArray(CreateArray(nStr)); foreach (int i in intArray) { answer += i.ToString(); } return long.Parse(answer); } public int[] Cre.. 2025. 6. 25. 이전 1 다음