class Solution {
public int[] solution(int n, int[] numlist) {
int[] answer = new int[numlist.length];
int j = 0;
for(int i = 0; i < numlist.length; i++) {
if(numlist[i] % n == 0) {
answer[j] = numlist[i];
j++;
}
if(numlist[i] == 0) {
answer[j] = numlist[i];
j++;
}
}
// 삭제된 숫자들을 제외한 배열을 새로운 배열로 복사
int[] result = new int[j];
for (int i = 0; i < j; i++) {
result[i] = answer[i];
}
return result;
}
}
'ㅋㅌ' 카테고리의 다른 글
모음제거 // my_string.replace("a","") (0) | 2023.06.12 |
---|---|
문자열 뒤집기 // my_string.charAt(i), my_string.length() (0) | 2023.06.12 |
**** 분수의 덧셈 / 최대공약수 구하기 (0) | 2023.06.12 |
n의 배수 번째 숫자 출력하기// .charAt(i); (0) | 2023.06.12 |
중앙값 구하기 // 크기 순으로 배열 정렬 Array.sort(array) (0) | 2023.06.11 |