728x90
반응형
class Solution {
public int[] solution(int[] num_list) {
int[] answer = new int[2];
for(int i=0; i<num_list.length; i++){
if(num_list[i] % 2 ==0){
answer[0] += 1;
}
else{
answer[1] += 1;
}
}
return answer;
}
}
728x90
반응형
'알고리즘 문제풀이 > Programmers - 자바' 카테고리의 다른 글
프로그래머스 - 옷가게 할인 받기 (0) | 2023.02.22 |
---|---|
프로그래머스 - 머쓱이보다 키 큰 사람 (0) | 2023.02.22 |
프로그래머스 - 배열 자르기 (0) | 2023.02.22 |
프로그래머스 - 문자열 뒤집기 (0) | 2023.02.22 |
프로그래머스 - 배열 뒤집기 (0) | 2023.02.22 |