코딩테스트 연습 > 제일 작은 수 제거하기
def solution(arr): arr.remove(min(arr)) if arr == []: arr.append(-1) return arr
min(list)
list.remove(item)