프로그래머스(Level 0) - 🙅‍♀️ 짝수는 싫어요

Gammi·2022년 12월 19일
0

프로그래머스

목록 보기
13/69

✔ 문제


✔ 풀이


Class Solution {
  public int[] solution(int n) {
    int[] answer = {};
    int arr = 0;
    if(n % 2 != 0) {
      answer = new int[n / 2 + 1];
    }else {
      answer = new int[n/2];
    }
    
    for(int i = 0; i <= n; i++) {
      if(i % 2 == 1) {
        answer[arr] = i;
        arr++;
      }
    }
    return answer;
  }
}
profile
개발자가 되었어요⭐️

0개의 댓글