[프로그래머스] 짝수는 싫어요

정선모·2022년 10월 18일
0

프로그래머스

목록 보기
82/91

ArrayList를 사용하면 더 간결하게 풀이가 가능합니다.

class Solution {
    public int[] solution(int n) {
        int[] answer;
        if(n%2 == 0) {
            answer = new int[n/2];    
        } else {
            answer = new int[n/2+1];
        }
        int count = 0;
        for(int i=0;i<=n;i++) {
            if(i%2 != 0) {
                answer[count] = i;
                count++;
            }
        }
        return answer;
    }
}
profile
개발자가 되어가는 비전공자

0개의 댓글