Question: At first my code was working but it wasn't removing the value but now it isn't working at all. I need help fixing it. I
At first my code was working but it wasn't removing the value but now it isn't working at all. I need help fixing it. I cannot use "def" functions although I'm aware it would help. Thank you in advance!


Part 4: Develop code to implement the "Fake Sort" routine described below. - Given a list of numerical data, create a new list with the data from the original list sorted from minimum to maximum We'll call this "Fake Sort" because it's cheating (a bit) to create a new list while destroying the original list Here's the basic algorithm - Find the minimum value in original list - Append value to the new list - Delete that element from original list - Repeat until run out of members in the original list Now, write a routine to reverse the sorted list - This is simply reversing indices - no need for comparing values Test your new routines on the grade data from above. Use your Fake Sort to find the median of the grade data
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
