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 total_sum=sum(arr) min_sum=total_sum-max(arr) max_sum=total_sum-min(arr) print(min_sum,max_sum)
if name == 'main':
arr = list(map(int, input().rstrip().split())) miniMaxSum(arr)
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 total_sum=sum(arr) min_sum=total_sum-max(arr) max_sum=total_sum-min(arr) print(min_sum,max_sum)
if name == 'main':