🔗 문제
https://school.programmers.co.kr/learn/courses/30/lessons/120824
💻 Code
def solution(num_list):
result = [0, 0]
for num in num_list:
if num % 2 == 0:
result[0] += 1
else:
result[1] += 1
return result
'Algorithm > 프로그래머스' 카테고리의 다른 글
[Lv.0/Python] 머쓱이보다 키 큰 사람 (0) | 2023.07.28 |
---|---|
[Lv.0/Python] 점의 위치 구하기 (0) | 2023.07.28 |
[Lv.0/Python] 자릿수 더하기 (0) | 2023.07.28 |
[Lv.0/Python] 중복된 숫자 개수 (0) | 2023.07.28 |
[Lv.0/Python] 배열 뒤집기 (0) | 2023.07.28 |