프로그래머스(Level 0) - 🎰 짝수 홀수 개수

Gammi·2023년 1월 16일
0

프로그래머스

목록 보기
24/69

✔ 문제






✔ 해결


class Solution {
  public int[] solution(int[] num_list) {
    int[] answer = new int[2];
    int n = 0, m = 0;
    for(int i = 0; i < num_list.length; i++) {
      if(num_list[i] % 2 == 0) {
        n++;
      }else {
        m++;
      }
    }
    answer[0] = n;
    answer[1] = m;
    return answer;
  }
}
profile
개발자가 되었어요⭐️

0개의 댓글