티스토리 뷰
문제출처 - https://programmers.co.kr/learn/courses/30/lessons/12910
def solution(arr, divisor):
answer = []
for i in arr:
if i % divisor == 0:
answer.append(i)
if len(answer) == 0:
answer.append(-1)
answer.sort()
return answer
'ALGORITHM > 프로그래머스' 카테고리의 다른 글
[Python]프로그래머스 - 완주하지 못한 선수(level1) (0) | 2020.02.15 |
---|---|
[Python]프로그래머스 - 두 정수 사이의 합(level1) (0) | 2020.02.10 |
[Python]프로그래머스 - 같은 숫자는 싫어(level1) (0) | 2020.02.08 |
[Python]프로그래머스 - 2016년(level1) (0) | 2020.02.08 |
[Python]프로그래머스 - 가운데 글자 가져오기(level1) (0) | 2020.02.08 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 딕셔너리
- 해시
- 2019 Kakao Blind Recruitment
- 우선순위큐
- 구현
- 백준
- 괄호
- 스택
- 문자열
- BOJ
- left join
- 순열
- 코딩테스트
- 정렬
- combination
- C++
- 프로그래머스
- Python
- Permutation
- 재귀
- 파이썬
- dictionary
- programmers
- 힙
- SWExpert
- 2020 KAKAO BLIND RECRUITMENT
- 문자열처리
- 완전탐색
- SW Expert
- hash
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함