글
프로그래머스 C# 짝수와 홀수의 개수(개쉬움, P, J)
프로그래밍
2022. 12. 26. 15:16
728x90
SMALL
using System;
public 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]++;
} /// 짝수면 첫 번째 0배열에 플러스 1씩 해준다.
else
{
answer[1]++;
} //홀수면 배열 1에 플러스 1씩 한다.
}
return answer;
}
}
파이썬
////
def solution(num_list):
answer = [0,0]
for n in num_list:
answer[n%2]+=1
return answer
2
////
def solution(num_list):
answer = [0,0]
for num in num_list:
if num % 2 == 0:
answer[0] += 1
else:
answer[1] += 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
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 아이스 아메리카노(몫과 나머지, P, J) (0) | 2022.12.26 |
---|---|
프로그래머스 C# 문자열 뒤집기(string -> ToCharArray(), Reverse, P, J) (0) | 2022.12.26 |
프로그래머스 C# 사분면 나누기 점의 위치 구하기(삼항연산자, 3항연산자) (0) | 2022.12.26 |
프로그래머스 C# 피자 나눠먹기1(Math.Celling(), 삼항연산자, P, J) (0) | 2022.12.26 |
프로그래머스 C# 배열 원소의 길이(Length, 자바) (0) | 2022.12.26 |