Question: You are given a list of integer numbers encoded in a pickle file. Write a program(python3) to return the intermediate result after pass 2 if
You are given a list of integer numbers encoded in a pickle file. Write a program(python3) to return the intermediate result after pass 2 if we apply selection sort to the given list.


Description You are given a list of integer numbers encoded in a pickle file. Write a program to return the intermediate result after pass 2 if we apply selection sort to the given list. Ex: Input : [23,78,45,8,32,56] after pass 2 of selection sort : [8,23,45,78,32,56] Input (From File: input.pkl) A list in a pickle file ("input.pkl") Ex: [23,78,45,8,32,56] Output (To File: stdio.txt) Standard Output: a list Ex: [8,23,45,78,32,56] Sample Input 1 Sample Output 1 [23,78,45,8,32,56] [8,23,45,78,32,56] Sample Input 2 Sample Output 2 [98,2,5,9,1,3] [1,2,5,9,98,3] Language: Python3 c 1
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
