Turbo sort - Time Limit Exceeded
问题 Am trying to solve a Codechef problem (Turbo Sort). The problem is Given the list of numbers, you are to sort them in non decreasing order. Input t – the number of numbers in list, then t lines follow [t <= 10^6]. Each line contains one integer: N [0 <= N <= 10^6] Output Output given numbers in non decreasing order. Example Input: 5 5 3 6 7 1 Output: 1 3 5 6 7 My Solution is : l = [] t = input() MAX = 10**6 while t <= MAX and t != 0: n = input() l.append(n) t = t - 1 st = sorted(l) for x in