728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/12910
using System.Collections.Generic;
using System.Linq;
public class Solution {
public int[] solution(int[] arr, int divisor) {
int[] answer = new int[] {};
List<int> temp = new List<int>();
foreach(int item in arr)
if (item % divisor == 0) temp.Add(item);
if (temp.Count == 0) temp.Add(-1);
answer = temp.OrderBy(x => x).ToArray();
return answer;
}
}
음 순수 배열로만 풀고 싶은데 좀 애매하니까..
반응형
'프로그래머스_C# > Level_1' 카테고리의 다른 글
[프로그래머스 C#] 두 정수 사이의 합 (0) | 2021.09.02 |
---|---|
[프로그래머스 C#] 문자열 내 마음대로 정렬하기 (0) | 2021.09.01 |
[프로그래머스 C#] 문자열 다루기 기본 (0) | 2021.08.31 |
[프로그래머스 C#] 문자열 내림차순으로 배치하기 (0) | 2021.08.31 |
[프로그래머스 C#] 소수 찾기 (0) | 2021.08.30 |