[Swift]프로그래머스 나누어 떨어지는 숫자 배열
by Roel Downey728x90
반응형
나누어 떨어지는 숫자 배열
문제
풀이
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
반응형
'알고리즘_자료구조 > 문제풀이' 카테고리의 다른 글
[Java] 문자열 다루기 기본 (0) | 2020.03.03 |
---|---|
[Java] 문자열 내 p와 y의 개수 (0) | 2020.03.02 |
[c++,Swift] 프로그래머스 소수 찾기 (0) | 2020.01.16 |
[Swift]프로그래머스 2016 (0) | 2019.09.03 |
[Swift]프로그래머스 체육복 (0) | 2019.09.01 |
블로그의 정보
What doing?
Roel Downey