본문 바로가기
Beakjoon&프로그래머스/파이썬

[프로그래머스/파이썬] 제일 작은 수 제거하기

by 현장 2021. 12. 19.

-코드

def solution(arr):
    arr.remove(min(arr))
    if len(arr) == 0:
        arr.append(-1)
        return arr
    else:
        return arr