You are viewing a single comment's thread. Return to all comments →
def miniMaxSum(arr): # Write your code here arr.sort() total = sum(arr) print(total-arr[len(arr)-1],end=" ") print(total-arr[0])
Seems like cookies are disabled on this browser, please enable them to open this website
Mini-Max Sum
You are viewing a single comment's thread. Return to all comments →