[프로그래머스] Lv1 - 나누어 떨어지는 숫자 배열

제리·2021년 1월 7일
0

프로그래머스

목록 보기
9/25

https://programmers.co.kr/learn/courses/30/lessons/12910

function solution(arr, divisor) {
    var answer = [];
    for(const num of arr ){
        if(num % divisor === 0) answer.push(num)
    }
    if(answer.length === 0) return [-1]
    return answer.sort((a,b) => a-b)
}
profile
흐릿한 잉크가 뚜렷한 기억보다 낫다

0개의 댓글