Remove Minimum number from a list without min() or pop()
My problem is: Write a function def remove_minimum(values) that returns the list resulting from removing the minimum value from a given list without using the min() function nor the pop() function. Do not print the list. I have a code that sorts and reverses the list but I cannot figure out how to remove the… Read More Remove Minimum number from a list without min() or pop()