나의 풀이
using System.Collections.Generic;
public class Solution {
public int[] solution(int[] arr, int divisor) {
List<int> answer = new List<int>();
for(int i = 0; i<arr.Length; i++)
{
if(arr[i] % divisor == 0)
answer.Add(arr[i]);
}
if(answer.Count == 0)
answer.Add(-1);
answer.Sort();
return answer.ToArray();
}
}
다른 사람의 풀이
Array에도 List와 동일한 기능들이 구현되어있다는 사실을 알게 되었다.
'알고리즘' 카테고리의 다른 글
프로그래머스 핸드폰 가리기 (0) | 2024.02.20 |
---|---|
프로그래머 음양 더하기 (0) | 2024.02.19 |
프로그래머스 서울에서 김서방 찾기 (0) | 2024.02.15 |
프로그래머스 콜라츠 추측 (0) | 2024.02.14 |
프로그래머스 두 정수 사이의 합 (1) | 2024.02.13 |