Roel Notebook

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

by Roel Downey
728x90
반응형

나누어 떨어지는 숫자 배열

 

 

문제 

- 문제 링크: 프로그래머스

 

 

 

 

풀이

import UIKit

func solution(_ arr: [Int], _ divisor:Int) -> [Int] {
    var result: [Int] = []

    for index in 0..<arr.count {
        if arr[index] % divisor == 0 {
            result.append(arr[index])
        }
    }

    if result.isEmpty {
        return [-1]
    }
    
    return result.sorted()
}

solution([5,9,7,10], 5)
solution([2,36,1,3], 1)
solution([3,2,6], 10)
728x90
반응형

블로그의 정보

What doing?

Roel Downey

활동하기