프로그래머 - n의 배수 고르기(java)

응큼한포도·2023년 11월 4일
0

코딩테스트

목록 보기
5/31
class Solution {
    public int[] solution(int n, int[] numlist) {
        
        int[] array = new int[numlist.length];
        int count = 0;
        for(int i = 0; i < numlist.length; i++){
            if(numlist[i] % n == 0){
                array[count] = numlist[i];
                count++;
            }
        }
        
        int[] answer = new int[count];
        for(int i = 0; i < count; i++){
            answer[i] = array[i];
        }
        
        return answer;
    }
}

그냥 루프에 넣어서 체크하면 된다.

profile
미친 취준생

0개의 댓글