[Code Signal] evenDigitsOnly

GY·2021년 10월 25일
0

알고리즘 문제 풀이

목록 보기
46/92
post-thumbnail

🎆Problem

Check if all digits of the given integer are even.

Example

For n = 248622, the output should be
evenDigitsOnly(n) = true;
For n = 642386, the output should be
evenDigitsOnly(n) = false.

🎇Solution

function evenDigitsOnly(n) {
    const arr = String(n).split('');
    const nums = [];
    arr.forEach((el) => {
        nums.push(Number.parseInt(el));
    
    })
    
    return nums.every(num => num % 2 === 0) ? true : false;
    
}

Reference

https://app.codesignal.com/

profile
Why?에서 시작해 How를 찾는 과정을 좋아합니다. 그 고민과 성장의 과정을 꾸준히 기록하고자 합니다.

0개의 댓글