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

코드1.

const solution = (arr, divisor) => {
	let res = arr.filter(num => num % divisor === 0);
	if(res.length === 0) res.push(-1);
	return res.sort((a, b) => a - b);
};

앞의 문제들을 차근차근 풀었다면 비교적 쉬운 문제이다!

나누어 떨어지는 숫자만 배열하기 때문에 filter()를 사용하고, sort((a, b) => a-b);를 사용해 오름차순으로 정렬한다.

Leave a comment

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다