Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 프로그래머스 파이썬
- 편스토랑 우승상품
- SW Expert Academy
- dacon
- 코로나19
- PYTHON
- 백준
- Kaggle
- ubuntu
- Docker
- programmers
- 더현대서울 맛집
- 파이썬
- leetcode
- 자연어처리
- 우분투
- 프로그래머스
- 맥북
- hackerrank
- 금융문자분석경진대회
- 캐치카페
- AI 경진대회
- Git
- gs25
- 데이콘
- Real or Not? NLP with Disaster Tweets
- github
- 편스토랑
- Baekjoon
- ChatGPT
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 나누어 떨어지는 숫자 배열 (Python) 본문
728x90
반응형
1일 1문제 313일차!
오늘의 문제는 프로그래머스의 나누어 떨어지는 숫자 배열 입니다.
Solution
def solution(arr, divisor):
answer = [num for num in arr if num % divisor == 0]
if len(answer) > 0:
answer = sorted(answer)
else:
answer = [-1]
return answer
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[HackerRank] Insert a node at a specific position in a linked list (Python) (0) | 2021.02.08 |
---|---|
[Programmers] 가운데 글자 가져오기 (Python) (0) | 2021.02.07 |
[leetCode] 389. Find the Difference (Python) (0) | 2021.02.03 |
[leetCode] 162. Find Peak Element (Python) (0) | 2021.02.02 |
[leetCode] 1232. Check If It Is a Straight Line (Python) (2) | 2021.02.01 |
Comments