[프로그래머스] 짝수 홀수 개수

정선모·2022년 10월 8일
0

프로그래머스

목록 보기
61/91

조건문과 반복문을 사용한 간단한 문제였습니다. 정답률이 비슷한 문제는 난이도가 비슷한 느낌이기도 합니다.

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]++;
            } else {
                answer[1]++;
            }
        }
        return answer;
    }
}
profile
개발자가 되어가는 비전공자

0개의 댓글