문제 링크 (Level 1)
https://school.programmers.co.kr/learn/courses/30/lessons/12935?language=python3
나의 코드 (Python)
def solution(arr):
if len(arr) == 1:
answer = [-1]
else:
arr.remove(min(arr))
answer = arr
return answer
arr.remove(min(arr))로 가장 작은 수를 제거합니다.
'코딩공부 > 프로그래머스 (python)' 카테고리의 다른 글
[프로그래머스] 짝수와 홀수 (Python) (0) | 2022.08.06 |
---|---|
[프로그래머스] 핸드폰 번호 가리기 (Python) (0) | 2022.08.06 |
[프로그래머스] 하샤드 수 (Python) (0) | 2022.08.04 |
[프로그래머스] 시저 암호 (Python) (0) | 2022.07.28 |
[프로그래머스] 자릿수 더하기 (Python) (0) | 2022.07.28 |
댓글