Home › Coding › Below is an instruction that describes a task. Write a respo...
Below is an instruction that describes a task. Write a respo...
Coding · Gemini, GPT-5.6, Claude · Coding
58Quality
89%Useful
86Reliability
The prompt
Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Generate a python program to sort a list of numbers ### Input: array = [4, 2, 6, 7, 1] ### Output: def sort_list(array): n = len(array) for i in range(n): min_idx = i for j in range(i+1, n): if array[min_idx] > array[j]: min_idx = j array[i], array[min_idx] = array[min_idx], array[i] if __name__ == "__main__": array = [4, 2, 6, 7, 1] sort_list(array) print(array)