You are viewing a single comment's thread. Return to all comments →
import math import os import random import re import sys
#
def miniMaxSum(arr): # Write your code here maxs = sum(arr)-max(arr) mins = sum(arr)-min(arr) return maxs, mins if name == 'main':
arr = list(map(int, input().rstrip().split())) a,b = miniMaxSum(arr) print(a,b)
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 →
!/bin/python3
import math import os import random import re import sys
#
Complete the 'miniMaxSum' function below.
#
The function accepts INTEGER_ARRAY arr as parameter.
#
def miniMaxSum(arr): # Write your code here maxs = sum(arr)-max(arr) mins = sum(arr)-min(arr) return maxs, mins if name == 'main':