- 짝수 홀수 개수
- 정수가 담긴 리스트 num_list가 주어질 때, num_list의 원소 중 짝수와 홀수의 개수를 담은 배열을 return 하도록 solution 함수를 완성해보세요.
내 풀이
class Solution {
public int[] solution(int[] num_list) {
int[] answer = new int[2];
for(int i: num_list){
if(i % 2 == 0){
answer[0]++;
}
else{
answer[1]++;
}
}
return answer;
}
}
다른 사람 풀이
class Solution {
public int[] solution(int[] num_list) {
int[] answer = new int[2];
for(int i = 0; i < num_list.length; i++)
answer[num_list[i] % 2]++;
return answer;
}
}
이 문제는 포스팅 안할라했는데 다른 사람 풀이가 너무 무릎 탁이라 쓴다..
728x90
'Java' 카테고리의 다른 글
[프로그래머스] 특정 문자 제거 (0) | 2023.11.05 |
---|---|
[프로그래머스] 문자 반복 출력 (0) | 2023.11.05 |
[프로그래머스] 배열 뒤집기 (0) | 2023.11.02 |
[프로그래머스] 옷가게 할인 받기 (0) | 2023.11.02 |
[프로그래머스] 피자 나눠먹기 1 2 3 (0) | 2023.10.31 |