function solution(arr, divisor) { arr = arr.filter((e) => e % divisor == 0).sort((x, y) => x - y); return !arr.length ? [ -1 ] : arr; }
성공