Question: in python please Define a function named remove_maximum(numbers) that takes an integer list as a parameter and removes the biggest element in the list. Note:

in python please
Define a function named remove_maximum(numbers) that takes an integer list as a parameter and removes the biggest element in the list. Note: you may assume that the parameter list is not empty and numbers are unique. You are not allowed to use the max ( ) built in function. The function does not return a result, it makes changes to the parameter list. For example: Test Result [3, 1] a_list = [3, 7, 1] remove_maximum(a_list) print(a_list) a_list = [6, 7, 1, -3, 5, -10] [6, 1, 3, 5, -10] remove_maximum(a_list) print(a_list)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
