반응형
문제
https://school.programmers.co.kr/learn/courses/30/lessons/12910
문제 풀이
아래 코드 참조
코드
def solution(arr, divisor):
res = [i for i in arr if i%divisor==0]
return sorted(res) if res else [-1]
반응형
'알고리즘 > 프로그래머스 문제풀이' 카테고리의 다른 글
[프로그래머스] lv.1 가장 비싼 상품 구하기 sql 풀이 (0) | 2023.10.20 |
---|---|
[프로그래머스] lv.1 2016년 python 풀이 (0) | 2023.10.20 |
[프로그래머스] lv.1 두 개 뽑아서 더하기 python 풀이 (0) | 2023.10.19 |
[프로그래머스] lv.1 평균 구하기 python 풀이 (0) | 2023.10.19 |
[프로그래머스] lv.1 삼총사 python 풀이 (0) | 2023.10.18 |