def solution(arr, divisor):
answer = []
count = 0
for i in range(len(arr)):
if arr[i]%divisor == 0:
answer.append(arr[i])
count += 1
if count == 0:
answer.append(-1)
return sorted(answer)
def solution(arr, divisor):
return sorted([x for x in arr if x%divisor == 0]) or [-1]
'Coding Test > Programmers_Python' 카테고리의 다른 글
[프로그래머스/python] K번째수 (0) | 2020.07.10 |
---|---|
[프로그래머스/python] 완주하지 못한 선수 (0) | 2020.07.09 |
[프로그래머스/python] 핸드폰 번호 가리기 (0) | 2020.07.09 |
[프로그래머스/python] 자연수 뒤집어 배열로 만들기 (0) | 2020.07.09 |
[프로그래머스/python] 최대공약수와 최대공배수 (0) | 2020.07.08 |