Computer Science, asked by boss1011, 6 months ago

write a function to find the sum of the largest and smallest number in the array​

Answers

Answered by valeriy69
0

nums = [69, 6, 9]

def find(arr):

print(f"Smallest: {min(nums)}\nLargest: {max(nums)}")

find(nums)

\small\mathsf\color{lightblue}useful?\: \color{white}\mapsto\: \color{gold}brainliest

Similar questions