class Solution {
public int[] solution(int[] num_list) {
int[] answer = {0, 0};
for(int num : num_list){
if(num%2 == 0){
answer[0] = answer[0] + 1;
} else {
answer[1] = answer[1] + 1;
}
}
return answer;
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 배열 자르기 (0) | 2023.04.10 |
---|---|
[프로그래머스/자바] 머쓱이보다 키 큰 사람 (0) | 2023.04.09 |
[프로그래머스/자바] 배열 뒤집기 (0) | 2023.03.30 |
[프로그래머스/자바] 피자 나눠 먹기(1) (0) | 2023.03.29 |
[프로그래머스/자바] 피자 나눠 먹기 (3) (0) | 2023.03.28 |