July 25, 2021
def solution(arr): min_value = min(arr) arr.remove(min_value) return arr if arr else [-1]
GitHubVelogFacebook