Programmers 제일 작은 수 제거하기

Solution

def solution(arr):
    min_value = min(arr)
    arr.remove(min_value)
    return arr if arr else [-1]