Answered step by step
Verified Expert Solution
Question
1 Approved Answer
def remove3big(list1, N): final_list = [] list1.sort() for i in range(0, N): max1 = 0 for j in range(len(list1)): if list1[j] > max1: max1 =
def remove3big(list1, N):
final_list = []
list1.sort()
for i in range(0, N):
max1 = 0
for j in range(len(list1)):
if list1[j] > max1:
max1 = list1[j];
final_list.append(max1)
list1 = [i for i in list1 if i not in final_list]
print(list1)
list1 = [1,2,3,4,5,6,6,5,4,3,2,1]
N =3
remove3big(list1,3)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started