내풀이
def solution(arr, divisor):
answer = []
for i in arr:
if i % divisor == 0:
answer.append(i)
if len(answer) == 0:
answer.append(-1)
return sorted(answer)
다른방법
def solution(arr, divisor): return sorted([n for n in arr if n%divisor == 0]) or [-1]
'Engineering WIKI > Programmers' 카테고리의 다른 글
[프로그래머스] 문자열 내림차순으로 배치하기 (0) | 2022.04.15 |
---|---|
[프로그래머스] 문자열 내 p와 y의 개수 (0) | 2022.04.15 |
[프로그래머스] 문자열 내 마음대로 정렬하기 (0) | 2022.04.14 |
[프로그래머스] 두 정수 사이의 합 (0) | 2022.04.14 |
[프로그래머스] 같은 숫자는 싫어 (0) | 2022.04.11 |
[프로그래머스] 다트 게임 (0) | 2022.04.11 |
[프로그래머스] 가운데 글자 가져오기 (0) | 2022.04.11 |
[프로그래머스] [1차] 비밀지도 (0) | 2022.04.11 |