์ ์๊ฐ ๋ด๊ธด ๋ฆฌ์คํธ num_list
๊ฐ ์ฃผ์ด์ง ๋, num_list
์ ์์ ์ค ์ง์์ ํ์์ ๊ฐ์๋ฅผ ๋ด์ ๋ฐฐ์ด์ return ํ๋๋ก solution ํจ์๋ฅผ ์์ฑํด๋ณด์ธ์.
num_list
์ ๊ธธ์ด โค 100num_list
์ ์์ โค 1,000num_list | result |
---|---|
[1, 2, 3, 4, 5] | [2, 3] |
[1, 3, 5, 7] | [0, 4] |
์ ์ถ๋ ฅ ์ #1
์ ์ถ๋ ฅ ์ #2
const solution = num_list => [num_list.filter(num => num%2 === 0 ).length, num_list.length-num_list.filter(num => num%2 === 0 ).length]